mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-10 05:56:29 +00:00
fix: exit process on success to continue execution of othe scripts (#32)
This commit is contained in:
parent
cc61913aca
commit
1e73194f54
1 changed files with 1 additions and 0 deletions
1
cli.js
1
cli.js
|
@ -81,6 +81,7 @@ function onError(error) {
|
||||||
console.error(error.message);
|
console.error(error.message);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
process.exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function promptForCommand(argv, cb) {
|
function promptForCommand(argv, cb) {
|
||||||
|
|
Loading…
Reference in a new issue