0
1
Fork 0
This commit is contained in:
Bryan MacFarlane 2020-03-26 12:23:38 -04:00
parent 75899f8cdf
commit 3e014ec8a4
2 changed files with 4 additions and 2 deletions

4
dist/index.js vendored
View File

@ -1308,7 +1308,7 @@ function run() {
console.log('Added go to the path');
// if the global installed bin wasn't added,
// we can add the bin just installed
if (!addBinToPath) {
if (!addedBin) {
addBinToPath();
}
}
@ -1331,8 +1331,10 @@ function addBinToPath() {
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;
}

View File

@ -67,7 +67,7 @@ function addBinToPath(): boolean {
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);