mirror of
https://gitea.com/actions/setup-node.git
synced 2025-04-05 23:09:45 +00:00
Throw error only if exit code is note zero. (#358)
This commit is contained in:
7
dist/cache-save/index.js
vendored
7
dist/cache-save/index.js
vendored
@ -3836,8 +3836,11 @@ exports.supportedPackageManagers = {
|
||||
}
|
||||
};
|
||||
exports.getCommandOutput = (toolCommand) => __awaiter(void 0, void 0, void 0, function* () {
|
||||
const { stdout, stderr, exitCode } = yield exec.getExecOutput(toolCommand);
|
||||
if (stderr) {
|
||||
let { stdout, stderr, exitCode } = yield exec.getExecOutput(toolCommand, undefined, { ignoreReturnCode: true });
|
||||
if (exitCode) {
|
||||
stderr = !stderr.trim()
|
||||
? `The '${toolCommand}' command failed with exit code: ${exitCode}`
|
||||
: stderr;
|
||||
throw new Error(stderr);
|
||||
}
|
||||
return stdout.trim();
|
||||
|
Reference in New Issue
Block a user