0
1
Fork 0

output version of go it resolved to

This commit is contained in:
Bryan MacFarlane 2020-03-31 10:37:33 -04:00
parent cec6ecefb4
commit f32657ccaf
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export async function run() {
let goPath = await io.which('go');
let goVersion = cp.execSync(`${goPath} version`);
console.log('Using go version ');
console.log(goVersion);
} catch (error) {
core.setFailed(error.message);
}