From 100b41994f8df2f120720a9fd5dee1c6707ecdc5 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Sun, 5 Jul 2015 13:17:52 -0400 Subject: [PATCH] Fix bin/setup. --- bin/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setup b/bin/setup index c53245c..de355fd 100755 --- a/bin/setup +++ b/bin/setup @@ -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