Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dloez committed Feb 11, 2024
1 parent e0d0c43 commit 1335aaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80291,7 +80291,7 @@ function linuxMacDownload(scriptUrl, actionRef) {
}
yield exec.getExecOutput('mkdir', ['-p', 'tag-track-bin']);
yield exec.getExecOutput('mv', [
'$HOME/.tag-track/bin/tag-track',
'"${HOME}/.tag-track/bin/tag-track"',
'./tag-track-bin/tag-track'
]);
});
Expand Down
2 changes: 1 addition & 1 deletion action/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function linuxMacDownload(scriptUrl: string, actionRef: string) {

await exec.getExecOutput('mkdir', ['-p', 'tag-track-bin'])
await exec.getExecOutput('mv', [
'$HOME/.tag-track/bin/tag-track',
'"${HOME}/.tag-track/bin/tag-track"',
'./tag-track-bin/tag-track'
])
}
Expand Down

0 comments on commit 1335aaf

Please sign in to comment.