From fe5e220087c8e110f72bfcba8f4a061cf7646e56 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 28 May 2019 10:34:57 +0200 Subject: [PATCH] fix(core): update --- ts/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/index.ts b/ts/index.ts index 5389586..92e57a2 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -59,6 +59,7 @@ export class SmartExit { process.on('SIGINT', async () => { ora.text('Ctrl-C... or SIGINT signal received!'); await this.killAll(); + process.exit(0); }); //catch uncaught exceptions, trace, then exit normally