mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-27 04:58:17 +00:00
Ignore exec failures (these are handled in code)
This commit is contained in:
parent
8ce630d670
commit
866aab0885
1 changed files with 2 additions and 1 deletions
3
index.js
3
index.js
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue