From 8e2e917992df7ec9587a5a2d3c72f2a98bbc47a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=C3=AFs=20Betts?= Date: Thu, 14 Nov 2024 16:11:10 +0100 Subject: [PATCH] Don't open a terminal window on Windows --- src/client/stdio.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/stdio.ts b/src/client/stdio.ts index 93b2550e3..2de16f818 100644 --- a/src/client/stdio.ts +++ b/src/client/stdio.ts @@ -103,6 +103,7 @@ export class StdioClientTransport implements Transport { { env: this._serverParams.env ?? getDefaultEnvironment(), stdio: ["pipe", "pipe", "inherit"], + shell: false, signal: this._abortController.signal, }, );