From: Dylan William Hardison Date: Wed, 27 Jun 2018 14:43:24 +0000 (-0400) Subject: no bug - For fish, powershell, etc users, use bash explicitly for vagrant tasks X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c62f6ecbb2bc0df70c340b66998433db8b80f047;p=thirdparty%2Fbugzilla.git no bug - For fish, powershell, etc users, use bash explicitly for vagrant tasks --- 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": [] },