From 96e9daf6e2b1d97f2c693536823c74583e693614 Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 13:11:14 +1300 Subject: [PATCH] Expand debugger Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com> --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 371b07d..793ee35 100644 --- a/index.js +++ b/index.js @@ -40,7 +40,9 @@ async function downloadRelease(octokit, os, org, repo, release, token) { // Extract the archive into the install target console.log("Unpacking archive file...") execSync(`cd "${binpath}" && ${extract} ${archive}`) - fs.readdirSync(binpath).forEach(console.log); + fs.readdirSync(binpath).forEach(file => { + console.log("Extracted " + file); + }); // Remove the downloaded asset archive console.log("Removing asset archive...")