From 1226540fb734142bfae0543529e52310ef5c4cd3 Mon Sep 17 00:00:00 2001 From: Carl Morris Date: Mon, 29 Jul 2019 15:27:41 -0500 Subject: [PATCH] Quote arguments in `.vscode/tasks.json` in case of spaces (#10204) --- .vscode/tasks.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4283a9f10..b92aaddeb 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -41,19 +41,19 @@ { "label": "Bootstrap", "type": "shell", - "command": "Import-Module ${workspaceFolder}/build.psm1; Start-PSBootstrap", + "command": "Import-Module '${workspaceFolder}/build.psm1'; Start-PSBootstrap", "problemMatcher": [] }, { "label": "Clean Build", "type": "shell", - "command": "Import-Module ${workspaceFolder}/build.psm1; Start-PSBuild -Clean -Output (Join-Path ${workspaceFolder} debug)", + "command": "Import-Module '${workspaceFolder}/build.psm1'; Start-PSBuild -Clean -Output (Join-Path '${workspaceFolder}' debug)", "problemMatcher": "$msCompile" }, { "label": "Build", "type": "shell", - "command": "Import-Module ${workspaceFolder}/build.psm1; Start-PSBuild -Output (Join-Path ${workspaceFolder} debug)", + "command": "Import-Module '${workspaceFolder}/build.psm1'; Start-PSBuild -Output (Join-Path '${workspaceFolder}' debug)", "group": { "kind": "build", "isDefault": true