From c1133e91313b5d7b80fd02f9067f723504193a02 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 27 May 2019 15:30:52 +0200 Subject: [PATCH] fix(core): update --- ts/smartshell.classes.smartshell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/smartshell.classes.smartshell.ts b/ts/smartshell.classes.smartshell.ts index e00384c..a6c45c3 100644 --- a/ts/smartshell.classes.smartshell.ts +++ b/ts/smartshell.classes.smartshell.ts @@ -53,7 +53,7 @@ export class Smartshell { const execChildProcess = cp.spawn(commandToExecute, [], { shell: true, env: process.env, - detached: true + detached: false }); this.smartexit.addProcess(execChildProcess);