Ignore exec failures (these are handled in code)

This commit is contained in:
Paul Hatcherian 2020-10-07 08:02:42 -04:00
parent 8ce630d670
commit 866aab0885

View file

@ -11,7 +11,8 @@ const cmd = async (command, ...args) => {
};
options.listeners = {
stdout: (data) => { output += data.toString(); },
stderr: (data) => { errors += data.toString(); }
stderr: (data) => { errors += data.toString(); },
ignoreReturnCode: true
};
await exec.exec(command, args, options)