Quote arguments in .vscode/tasks.json in case of spaces (#10204)

This commit is contained in:
Carl Morris 2019-07-29 15:27:41 -05:00 committed by Travis Plunk
parent d2e81dbc13
commit 1226540fb7

6
.vscode/tasks.json vendored
View file

@ -41,19 +41,19 @@
{ {
"label": "Bootstrap", "label": "Bootstrap",
"type": "shell", "type": "shell",
"command": "Import-Module ${workspaceFolder}/build.psm1; Start-PSBootstrap", "command": "Import-Module '${workspaceFolder}/build.psm1'; Start-PSBootstrap",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "Clean Build", "label": "Clean Build",
"type": "shell", "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" "problemMatcher": "$msCompile"
}, },
{ {
"label": "Build", "label": "Build",
"type": "shell", "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": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true