mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-19 22:21:45 +00:00
Fix missing $
Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
parent
580790fbab
commit
2725d26cb6
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -22,7 +22,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) {
|
||||||
if (token) {
|
if (token) {
|
||||||
execSync(`curl -L -o ${tempdir}/gotestfmt${postfix} -H "Authorization: Bearer ${token}" ${asset.browser_download_url}`)
|
execSync(`curl -L -o ${tempdir}/gotestfmt${postfix} -H "Authorization: Bearer ${token}" ${asset.browser_download_url}`)
|
||||||
} else {
|
} else {
|
||||||
execSync(`curl -L -o ${tempdir}/gotestfmt${postfix} {asset.browser_download_url}`)
|
execSync(`curl -L -o ${tempdir}/gotestfmt${postfix} ${asset.browser_download_url}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("Creating /usr/local/lib/gotestfmt directory...")
|
console.log("Creating /usr/local/lib/gotestfmt directory...")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue