mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-08 00:37:27 +00:00
Expand debugger
Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
parent
684d72ee8b
commit
96e9daf6e2
1 changed files with 3 additions and 1 deletions
4
index.js
4
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...")
|
||||
|
|
|
|||
Loading…
Reference in a new issue