mirror of
https://github.com/actions/setup-node.git
synced 2024-11-10 05:31:07 +07:00
Merge pull request #540 from dmitry-shibanov/fix-error-node-version
Fix error node version output
This commit is contained in:
commit
ad8542ca5e
9
dist/setup/index.js
vendored
9
dist/setup/index.js
vendored
@ -71846,8 +71846,13 @@ function run() {
|
|||||||
yield installer.getNode(version, stable, checkLatest, auth, arch);
|
yield installer.getNode(version, stable, checkLatest, auth, arch);
|
||||||
}
|
}
|
||||||
// Output version of node is being used
|
// Output version of node is being used
|
||||||
const { stdout: installedVersion } = yield exec.getExecOutput('node', ['--version'], { ignoreReturnCode: true });
|
try {
|
||||||
core.setOutput('node-version', installedVersion);
|
const { stdout: installedVersion } = yield exec.getExecOutput('node', ['--version'], { ignoreReturnCode: true, silent: true });
|
||||||
|
core.setOutput('node-version', installedVersion.trim());
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
core.setOutput('node-version', '');
|
||||||
|
}
|
||||||
const registryUrl = core.getInput('registry-url');
|
const registryUrl = core.getInput('registry-url');
|
||||||
const alwaysAuth = core.getInput('always-auth');
|
const alwaysAuth = core.getInput('always-auth');
|
||||||
if (registryUrl) {
|
if (registryUrl) {
|
||||||
|
@ -41,12 +41,16 @@ export async function run() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Output version of node is being used
|
// Output version of node is being used
|
||||||
|
try {
|
||||||
const {stdout: installedVersion} = await exec.getExecOutput(
|
const {stdout: installedVersion} = await exec.getExecOutput(
|
||||||
'node',
|
'node',
|
||||||
['--version'],
|
['--version'],
|
||||||
{ignoreReturnCode: true}
|
{ignoreReturnCode: true, silent: true}
|
||||||
);
|
);
|
||||||
core.setOutput('node-version', installedVersion);
|
core.setOutput('node-version', installedVersion.trim());
|
||||||
|
} catch (err) {
|
||||||
|
core.setOutput('node-version', '');
|
||||||
|
}
|
||||||
|
|
||||||
const registryUrl: string = core.getInput('registry-url');
|
const registryUrl: string = core.getInput('registry-url');
|
||||||
const alwaysAuth: string = core.getInput('always-auth');
|
const alwaysAuth: string = core.getInput('always-auth');
|
||||||
|
Loading…
Reference in New Issue
Block a user