From a29a69bbe779c457f0aa4e07bc23ad32dddb12c6 Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 14:51:58 +1300 Subject: [PATCH] Correct interpolation 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 c3baa2a..ad55735 100644 --- a/index.js +++ b/index.js @@ -41,7 +41,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) { // Extract the archive into the install target console.log("Unpacking archive file...") execSync(`${extract} "${archive}"`) - fs.rename(binfile, `${binpath}/{binfile}`, function (err) { + fs.rename(binfile, `${binpath}/${binfile}`, function (err) { if (err) { throw err; }