fix: exit process on success to continue execution of othe scripts (#32)

This commit is contained in:
Spyros Ioakeimidis 2017-02-07 12:21:05 +01:00 committed by Jeroen Engels
parent cc61913aca
commit 1e73194f54

1
cli.js
View file

@ -81,6 +81,7 @@ function onError(error) {
console.error(error.message);
process.exit(1);
}
process.exit();
}
function promptForCommand(argv, cb) {