From 50d946e4a7e9d256f5535a7a48e7d5c59c66a8dd Mon Sep 17 00:00:00 2001 From: Christian Bruckmayer Date: Sat, 5 Mar 2016 15:15:22 +0100 Subject: [PATCH] Fixes setup db if statement in bootstrap.sh to setup the database if there is no developement and no test database already. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 48c6a054..7ef62f4a 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -37,7 +37,7 @@ fi if [ ! -f /vagrant/config/database.yml ] && [ -f /vagrant/config/database.yml.example ]; then echo -e "\nSetting up your database from config/database.yml...\n" cp config/database.yml.example config/database.yml - if [ ! -f db/development.sqlite3 ] && [ -f db/test.sqlite3 ]; then + if [ ! -f db/development.sqlite3 ] && [ ! -f db/test.sqlite3 ]; then bundle exec rake db:setup else echo -e "\n\nWARNING: You have already have a development/test database."