Skip to content

Commit aab7cc8

Browse files
add silent
1 parent 5b949b5 commit aab7cc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/setup/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71846,7 +71846,7 @@ function run() {
7184671846
yield installer.getNode(version, stable, checkLatest, auth, arch);
7184771847
}
7184871848
// Output version of node is being used
71849-
const { stdout: installedVersion } = yield exec.getExecOutput('node', ['--version'], { ignoreReturnCode: true });
71849+
const { stdout: installedVersion } = yield exec.getExecOutput('node', ['--version'], { ignoreReturnCode: true, silent: false });
7185071850
core.setOutput('node-version', installedVersion);
7185171851
const registryUrl = core.getInput('registry-url');
7185271852
const alwaysAuth = core.getInput('always-auth');

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export async function run() {
4444
const {stdout: installedVersion} = await exec.getExecOutput(
4545
'node',
4646
['--version'],
47-
{ignoreReturnCode: true}
47+
{ignoreReturnCode: true, silent: false}
4848
);
4949
core.setOutput('node-version', installedVersion);
5050

0 commit comments

Comments
 (0)