Fix bin/setup.

This commit is contained in:
John Bintz 2015-07-05 13:17:52 -04:00
parent 967d656643
commit 100b41994f
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
command -v VBoxManage || { echo "Install VirtualBox! https://www.virtualbox.org/wiki/Downloads"; exit 1; }
command -v vagrant || { echo "Install Vagrant! https://www.vagrantup.com/downloads.html"; exit 1; }
command -v rvm || { echo "Install rvm! http://rvm.io/"; exit 1; }
command -v nvm || { echo "Install nvm! https://github.com/creationix/nvm"; exit 1; }
[[ -d ~/.nvm ]] || { echo "Install nvm! https://github.com/creationix/nvm"; exit 1; }
command -v bundle || { echo "Install bundler! gem install bundler"; exit 1; }
bundle install