diff --git a/src/main.ts b/src/main.ts index 0c0aa6b..5d79459 100644 --- a/src/main.ts +++ b/src/main.ts @@ -63,6 +63,7 @@ export async function run() { async function addBinToPath(): Promise { let added = false; let g = await io.which('go'); + core.debug(`which go :${g};`); if (!g) { core.debug('go not in the path'); return added; @@ -71,7 +72,7 @@ async function addBinToPath(): Promise { let buf = cp.execSync('go env GOPATH'); if (buf) { let gp = buf.toString().trim(); - core.debug(`go env GOPATH: ${gp}`); + core.debug(`go env GOPATH :${gp}:`); if (fs.existsSync(gp)) { let bp = path.join(gp, 'bin'); if (!fs.existsSync(bp)) { @@ -82,6 +83,9 @@ async function addBinToPath(): Promise { core.addPath(bp); added = true; } + else { + core.debug('go env GOPATH does not exist'); + } } return added; }