chore: update dist files
parent
6808ee3c36
commit
c72873efae
|
|
@ -4508,6 +4508,9 @@ class System {
|
|||
throw new Error(`Failed to run "${commandAsString}".\n ${message}`);
|
||||
};
|
||||
try {
|
||||
if (command.trim() === '') {
|
||||
throw new Error(`Failed to execute empty command`);
|
||||
}
|
||||
const exitCode = yield exec_1.exec(command, arguments_, Object.assign({ silent: true, listeners }, options));
|
||||
showOutput();
|
||||
if (exitCode !== 0) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue