From 2725d26cb6885d84362f65fef52a88e6a2737b95 Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 09:53:56 +1300 Subject: [PATCH] Fix missing `$` Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com> --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 390ae19..041f229 100644 --- a/index.js +++ b/index.js @@ -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...")