chore: update dist files

pull/357/head
Webber 2022-03-26 20:33:05 +01:00
parent 6808ee3c36
commit c72873efae
1 changed files with 4328 additions and 4325 deletions

3
dist/index.js vendored
View File

@ -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) {