From c56cd045f3f0c5280d5d5bf3c310c1b52cc7ae82 Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Tue, 14 Oct 2025 19:23:31 +0200 Subject: [PATCH] Quote binaryPath for Windows Fixes #34 --- client/src/setupSelectedVersion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/setupSelectedVersion.ts b/client/src/setupSelectedVersion.ts index 8fa8136..2dc43f9 100644 --- a/client/src/setupSelectedVersion.ts +++ b/client/src/setupSelectedVersion.ts @@ -141,7 +141,7 @@ async function getBinaryPathWithPermissions(context: ExtensionContext) { }); } else { // on windows we need to add the .bat to the binary path - binaryPath = `${binaryPath}.bat`; + binaryPath = `"${binaryPath}.bat"`; resolve(); } }).catch((e) => {