Move version to args

This commit is contained in:
Josh Gross 2020-04-21 14:13:03 -04:00
parent 2d53d29868
commit 28505ad4d3
No known key found for this signature in database
GPG Key ID: 17A6308EA2144978
2 changed files with 4 additions and 4 deletions

4
dist/index.js vendored
View File

@ -15220,9 +15220,9 @@ function run() {
yield installer.getNode(version);
}
// Output version of node and npm that are being used
const nodeVersion = exec.exec(`"$ --version`);
exec.exec('node', ['--version']);
// Older versions of Node don't include npm, so don't let this call fail
const npmVersion = exec.exec(`npm --version`, undefined, {
exec.exec('npm', ['--version'], {
ignoreReturnCode: true
});
const registryUrl = core.getInput('registry-url');

View File

@ -20,10 +20,10 @@ async function run() {
}
// Output version of node and npm that are being used
const nodeVersion = exec.exec(`"$ --version`);
exec.exec('node', ['--version']);
// Older versions of Node don't include npm, so don't let this call fail
const npmVersion = exec.exec(`npm --version`, undefined, {
exec.exec('npm', ['--version'], {
ignoreReturnCode: true
});