From b371e8e9f8cbd9287c52724b533497ea5c329f54 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Thu, 30 Apr 2020 17:05:45 +0300 Subject: [PATCH] Fix node shell session regression (#326) Signed-off-by: Jari Kolehmainen --- src/main/node-shell-session.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/node-shell-session.ts b/src/main/node-shell-session.ts index 99a1867967..4674307fc0 100644 --- a/src/main/node-shell-session.ts +++ b/src/main/node-shell-session.ts @@ -38,6 +38,7 @@ export class NodeShellSession extends ShellSession { name: "xterm-256color", rows: 30, }); + this.running = true; this.pipeStdout() this.pipeStdin() this.closeWebsocketOnProcessExit()