summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.vscode/tasks.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index c15d7a457..757c6b5f7 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -20,7 +20,7 @@
{
"label": "Vagrant: Update Local Server",
"type": "shell",
- "command": "vagrant rsync && vagrant provision --provision-with update",
+ "command": "bash -c 'vagrant rsync && vagrant provision --provision-with update'",
"group": {
"kind": "build",
"isDefault": true
@@ -30,7 +30,7 @@
{
"label": "Vagrant: Force Update Local Server",
"type": "shell",
- "command": "vagrant rsync && vagrant provision",
+ "command": "bash -c 'vagrant rsync && vagrant provision'",
"group": "build",
"problemMatcher": []
},