Fix condition for old go versions

This commit is contained in:
Vladimir Safonkin 2022-04-17 17:36:51 +02:00
parent 4a4352b330
commit ad70bef2ef
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -2122,7 +2122,7 @@ function addBinToPath() {
return added;
}
let buf = child_process_1.default.execSync('go env GOPATH');
if (buf) {
if (buf.length > 1) {
let gp = buf.toString().trim();
core.debug(`go env GOPATH :${gp}:`);
if (!fs_1.default.existsSync(gp)) {

View file

@ -69,7 +69,7 @@ export async function addBinToPath(): Promise<boolean> {
}
let buf = cp.execSync('go env GOPATH');
if (buf) {
if (buf.length > 1) {
let gp = buf.toString().trim();
core.debug(`go env GOPATH :${gp}:`);
if (!fs.existsSync(gp)) {