Fix missing $

Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
Yuri Norwood 2022-11-07 09:53:56 +13:00 committed by GitHub
parent 580790fbab
commit 2725d26cb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) {
if (token) {
execSync(`curl -L -o ${tempdir}/gotestfmt${postfix} -H "Authorization: Bearer ${token}" ${asset.browser_download_url}`)
} 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...")