|
|
@ -62,10 +62,14 @@ export async function run() {
|
|
|
|
function addBinToPath(): boolean {
|
|
|
|
function addBinToPath(): boolean {
|
|
|
|
let added = false;
|
|
|
|
let added = false;
|
|
|
|
let buf = cp.execSync('go env GOPATH');
|
|
|
|
let buf = cp.execSync('go env GOPATH');
|
|
|
|
|
|
|
|
|
|
|
|
if (buf) {
|
|
|
|
if (buf) {
|
|
|
|
let d = buf.toString().trim();
|
|
|
|
let d = buf.toString().trim();
|
|
|
|
|
|
|
|
core.debug(`go env GOPATH: ${d}`);
|
|
|
|
let bp = path.join(d, 'bin');
|
|
|
|
let bp = path.join(d, 'bin');
|
|
|
|
|
|
|
|
|
|
|
|
if (fs.existsSync(bp)) {
|
|
|
|
if (fs.existsSync(bp)) {
|
|
|
|
|
|
|
|
core.debug(`${bp} exists`);
|
|
|
|
core.addPath(bp);
|
|
|
|
core.addPath(bp);
|
|
|
|
added = true;
|
|
|
|
added = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|