Skip to content

Commit e6c24e4

Browse files
authored
Merge pull request #35 from processing/fix-windows-path
Quote binaryPath for Windows
2 parents 135dddd + c56cd04 commit e6c24e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/setupSelectedVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ async function getBinaryPathWithPermissions(context: ExtensionContext) {
141141
});
142142
} else {
143143
// on windows we need to add the .bat to the binary path
144-
binaryPath = `${binaryPath}.bat`;
144+
binaryPath = `"${binaryPath}.bat"`;
145145
resolve();
146146
}
147147
}).catch((e) => {

0 commit comments

Comments
 (0)