From 5c741a400988dc7886873b188be925616bc84eca Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Fri, 17 Jul 2020 12:58:14 +0200 Subject: [PATCH] fixup! feat: set node-version action output --- dist/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 38f3fcf8..72c865f7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4651,7 +4651,7 @@ function run() { const checkLatest = (core.getInput('check-latest') || 'false').toUpperCase() === 'TRUE'; yield installer.getNode(version, stable, checkLatest, auth); } - // Output version of node and npm that are being used + // Output version of node is being used let installedVersion = ''; yield exec.exec('node', ['--version'], { listeners: { diff --git a/src/main.ts b/src/main.ts index 6ec8e1d6..e3bfaab2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -25,7 +25,7 @@ export async function run() { await installer.getNode(version, stable, checkLatest, auth); } - // Output version of node and npm that are being used + // Output version of node is being used let installedVersion = ''; await exec.exec('node', ['--version'], { listeners: {