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.
This commit is contained in:
Michael Vogel 2014-11-16 18:42:22 +01:00
parent 771e89ee42
commit e47a04b130

View File

@ -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