Remove extra version logging

This commit is contained in:
Josh Gross 2020-04-16 10:56:07 -04:00
parent 52eb8a7524
commit 0dc69b3a71
No known key found for this signature in database
GPG key ID: 17A6308EA2144978
2 changed files with 0 additions and 2 deletions

1
dist/index.js vendored
View file

@ -15224,7 +15224,6 @@ function run() {
yield installer.getNode(version);
}
// Output version of node and npm that are being used
console.log(`Installed Node version '${version}.`);
const nodePath = yield io.which('node');
const nodeVersion = child_process_1.default.execSync(`${nodePath} --version`);
console.log(`Node Version: ${nodeVersion}`);

View file

@ -20,7 +20,6 @@ async function run() {
}
// Output version of node and npm that are being used
console.log(`Installed Node version '${version}.`);
const nodePath = await io.which('node');
const nodeVersion = cp.execSync(`${nodePath} --version`);
console.log(`Node Version: ${nodeVersion}`);