From 684d72ee8b19463bfdf126c9b487dec0f38119d3 Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 12:55:26 +1300 Subject: [PATCH] List files extracted to bin path Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com> --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 7f63c4c..371b07d 100644 --- a/index.js +++ b/index.js @@ -40,6 +40,7 @@ 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); // Remove the downloaded asset archive console.log("Removing asset archive...")