More info if command gives no output, just the exit code.
parent
7386c669ad
commit
8c9ff3249e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue