1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-go synced 2025-06-09 20:12:23 +02:00
This commit is contained in:
Bryan MacFarlane 2020-03-31 10:40:32 -04:00
parent 2091469f9f
commit 0dbc7e4965
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ export async function run() {
// output the version actually being used
let goPath = await io.which('go');
let goVersion = cp.execSync(`${goPath} version`);
let goVersion = (cp.execSync(`${goPath} version`) || '').toString();
console.log(goVersion);
} catch (error) {