Skip to content

Commit

Permalink
Fix status bar button in folders with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
xethlyx committed Sep 30, 2021
1 parent 847755a commit 24b9b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export async function activate(context: vscode.ExtensionContext) {
vscode.commands.executeCommand('setContext', 'roblox-ts:compilerActive', true);
if (!development && fs.existsSync(localInstall)) {
outputChannel.appendLine("Detected local install, using local install instead of global");
compilerProcess = childProcess.spawn(localInstall, parameters, options);
compilerProcess = childProcess.spawn(`"${localInstall}"`, parameters, options);
} else {
compilerProcess = childProcess.spawn(compilerCommand, parameters, options);
}
Expand Down

0 comments on commit 24b9b0e

Please sign in to comment.