From e47a04b130a2be150ddd9796fb0fdd2bdf4b4e41 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 16 Nov 2014 18:42:22 +0100 Subject: [PATCH] Add make to provision.sh and remove fish as default shell Make is needed for the tests to run The tests don't run with with either as `npm test` uses the "shell" package which tries to execute shell commands in its parent shell. If the shell is fish..well, it doesn't work. --- provision.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/provision.sh b/provision.sh index 433ba09..4382437 100644 --- a/provision.sh +++ b/provision.sh @@ -1,9 +1,9 @@ #!/bin/bash sudo apt-get update -qq -sudo apt-get install -y git fish +sudo apt-get install -y git fish make # Switch to fish as a default shell -sudo chsh -s `which fish` vagrant +# sudo chsh -s `which fish` vagrant # Install nvm /vagrant/install.sh