Add debugger lines

Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
Yuri Norwood 2022-11-07 10:42:57 +13:00 committed by GitHub
parent 73534fb549
commit 23017b3af3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,6 +16,13 @@ async function downloadRelease(octokit, os, org, repo, release, token) {
const binpath = os === "windows" ? process.env.USERPROFILE + "\\bin" : "/usr/local/bin";
const extract = os === "windows" ? "tar -xvf" : "tar -xvzf";
const archive = `${tempdir}${pathsep}gotestfmt${postfix}`;
console.log("postfix: " + postfix);
console.log("pathsep: " + pathsep);
console.log("tempdir: " + tempdir);
console.log("binpath: " + binpath);
console.log("extract: " + extract);
console.log("archive: " + archive);
for (let asset of releaseAssets.data) {