From 73534fb549d66c8754c4f32a46c7ad428a425c31 Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 10:41:29 +1300 Subject: [PATCH] Fix whitespace 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 6042e53..097811d 100644 --- a/index.js +++ b/index.js @@ -14,7 +14,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) { const pathsep = os === "windows" ? "\\" : "/"; const tempdir = os === "windows" ? process.env.TEMP : "/tmp"; const binpath = os === "windows" ? process.env.USERPROFILE + "\\bin" : "/usr/local/bin"; - const extract = os === "windows" ? "tar -xvf " : "tar -xvzf"; + const extract = os === "windows" ? "tar -xvf" : "tar -xvzf"; const archive = `${tempdir}${pathsep}gotestfmt${postfix}`; for (let asset of releaseAssets.data) {