From 1e73194f542c7ba2e662d01887424bd03ebc8ad0 Mon Sep 17 00:00:00 2001 From: Spyros Ioakeimidis Date: Tue, 7 Feb 2017 12:21:05 +0100 Subject: [PATCH] fix: exit process on success to continue execution of othe scripts (#32) --- cli.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cli.js b/cli.js index 6be248b..e52969a 100755 --- a/cli.js +++ b/cli.js @@ -81,6 +81,7 @@ function onError(error) { console.error(error.message); process.exit(1); } + process.exit(); } function promptForCommand(argv, cb) {