From c4366b102a633d3f11c16751f6f6636f92008c70 Mon Sep 17 00:00:00 2001 From: Rob Smith Date: Sat, 17 Sep 2016 19:34:25 -0700 Subject: [PATCH] Add another place where rails is called without a full path to the binary --- bootstrap.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 9bebd04d..42766366 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -24,11 +24,11 @@ if [ ! -f /vagrant/config/database.yml ] && [ -f /vagrant/config/database.yml.ex else echo -e "\n\nWARNING: You have already have a development/test database." echo -e "WARNING: Please make sure this database works in this vagrant box!\n\n" - fi + fi else - echo -e "\nnWARNING: You have already configured your database in config/database.yml." - echo -e "WARNING: Please make sure this configuration works in this vagrant box!\n\n" + echo -e "\nnWARNING: You have already configured your database in config/database.yml." + echo -e "WARNING: Please make sure this configuration works in this vagrant box!\n\n" fi echo -e "\nProvisioning of your OSEM rails app done!" -echo -e "To start your development OSEM run: vagrant exec rails server -b 0.0.0.0\n" +echo -e "To start your development OSEM run: vagrant exec /vagrant/bin/rails server -b 0.0.0.0\n"