We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 61a7dd3 + e93bb7d commit 86ec727Copy full SHA for 86ec727
src/helpers/commandHelper.ts
@@ -143,7 +143,8 @@ export class CommandEnvironmentHelper {
143
144
args.push('--timeout=' + settings.workspace.editorService.timeout);
145
if (vscode.workspace.workspaceFolders !== undefined) {
146
- args.push('--local-workspace=' + vscode.workspace.workspaceFolders[0].uri.fsPath);
+ const path = `--local-workspace='${vscode.workspace.workspaceFolders[0].uri.fsPath}'`;
147
+ args.push(path);
148
}
149
150
// Convert the individual puppet settings into the --puppet-settings
0 commit comments