From cd777e7a80b6e830088ef1ad74b0a187f6d82420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Abdelkader=20Mart=C3=ADnez=20P=C3=A9rez?= Date: Thu, 18 Mar 2021 18:02:45 +0100 Subject: [PATCH] fix: exit the process after the command action is performed. Closes #805 --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 965663c3..8d835399 100755 --- a/src/index.ts +++ b/src/index.ts @@ -367,4 +367,6 @@ if (args.length === 0) { console.error('Unknown error', error); } } + /* eslint-disable no-process-exit*/ + process.exit(); })();