From 71f3c80d96aeb987555bbfdd81204611c4c0e7ca Mon Sep 17 00:00:00 2001 From: Yuri Norwood <106889957+norwd@users.noreply.github.com> Date: Mon, 7 Nov 2022 14:59:10 +1300 Subject: [PATCH] List installed files Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com> --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index f851654..b0a1ba9 100644 --- a/index.js +++ b/index.js @@ -46,6 +46,9 @@ async function downloadRelease(octokit, os, org, repo, release, token) { throw err; } }); + fs.readdirSync(binpath).forEach(file => { + console.log("Installed: " + file); + }); // Remove the downloaded asset archive console.log("Removing asset archive...")