More info if command gives no output, just the exit code.

This commit is contained in:
Webber 2020-05-21 20:13:33 +02:00 committed by Webber Takken
parent 7386c669ad
commit 8c9ff3249e

View File

@ -34,7 +34,12 @@ class System {
}
if (exitCode !== 0) {
throw new Error(error);
let argumentsString = '';
if (Array.isArray(arguments_)) {
argumentsString += ` ${arguments_.join(' ')}`;
}
throw new Error(`Failed to run "${command}${argumentsString}".\n ${error}`);
}
return result;