List installed files

Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
Yuri Norwood 2022-11-07 14:59:10 +13:00 committed by GitHub
parent 0b2515da35
commit 71f3c80d96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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...")