mirror of
https://code.forgejo.org/actions/setup-go.git
synced 2024-11-05 19:45:49 +00:00
add debug
This commit is contained in:
parent
1fdcb9b160
commit
75899f8cdf
1 changed files with 4 additions and 0 deletions
|
@ -62,10 +62,14 @@ export async function run() {
|
|||
function addBinToPath(): boolean {
|
||||
let added = false;
|
||||
let buf = cp.execSync('go env GOPATH');
|
||||
|
||||
if (buf) {
|
||||
let d = buf.toString().trim();
|
||||
core.debug(`go env GOPATH: ${d}`);
|
||||
let bp = path.join(d, 'bin');
|
||||
|
||||
if (fs.existsSync(bp)) {
|
||||
core.debug(`${bp} exists`);
|
||||
core.addPath(bp);
|
||||
added = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue