From 96004b72984a9b1f9267fffa8f9124a99f9279d7 Mon Sep 17 00:00:00 2001 From: Erik Demaine Date: Mon, 16 Dec 2024 12:56:04 -0500 Subject: [PATCH] Add `shell: true` option for modern Node/VSCode Fixes #458 --- lib/FlowLanguageClient/FlowLanguageClient.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/FlowLanguageClient/FlowLanguageClient.js b/lib/FlowLanguageClient/FlowLanguageClient.js index 44db545..5bc27fa 100644 --- a/lib/FlowLanguageClient/FlowLanguageClient.js +++ b/lib/FlowLanguageClient/FlowLanguageClient.js @@ -178,6 +178,7 @@ export default class FlowLanguageClient { // auto stop flow process config.stopFlowOnExit ? '--autostop' : null, ].filter(Boolean), + options: { shell: true }, // see: clientOptions.workspaceFolder below // options: { cwd: flowconfigDir },