diff --git a/dist/index.js b/dist/index.js index 405263d..6cbd395 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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}`); diff --git a/src/setup-node.ts b/src/setup-node.ts index a31a7a7..28c106e 100644 --- a/src/setup-node.ts +++ b/src/setup-node.ts @@ -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}`);