summaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-27 16:43:24 +0200
committerKohei Yoshino <kohei.yoshino@gmail.com>2018-06-27 16:43:24 +0200
commitc62f6ecbb2bc0df70c340b66998433db8b80f047 (patch)
tree2a8bece6650da5d848d3e1a1931c178eff301aa8 /.vscode
parentb984e77dfe6cdd03f6203cb6a7f3908255df9d23 (diff)
downloadbugzilla-c62f6ecbb2bc0df70c340b66998433db8b80f047.tar.gz
bugzilla-c62f6ecbb2bc0df70c340b66998433db8b80f047.tar.xz
no bug - For fish, powershell, etc users, use bash explicitly for vagrant tasks
Diffstat (limited to '.vscode')
-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": []
},