fix(core): fix process hanging for ctrl C (#3856)

This commit is contained in:
Jason Jean 2020-10-02 19:17:03 -04:00 committed by GitHub
parent 6c4aacf212
commit 8e519cd8e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -342,6 +342,7 @@ export class TaskOrchestrator {
this.processes.forEach((p) => {
p.kill('SIGINT');
});
process.exit();
});
}
}