From 60fbee781dcf0c4a581fb7d2aab033a7db43352d Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 12:30:19 +1300 Subject: [PATCH] Fix mkdir invocation 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 0e4e324..179d1fb 100644 --- a/index.js +++ b/index.js @@ -18,7 +18,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) { const archive = `${tempdir}gotestfmt${postfix}`; if (os === "windows") { - fs.mkdirpSync(binpath) + fs.mkdirSync(binpath) execSync(`echo "${binpath}" >> ${process.env.GITHUB_PATH}`) }