Skip to content

Commit

Permalink
Merge pull request #122 from mtparet/patch-1
Browse files Browse the repository at this point in the history
Fix bootstrap.sh with newer bundler
  • Loading branch information
LuizArmesto committed Dec 27, 2014
2 parents 86a167c + c0bd860 commit 4258304
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ then
gem install bundler

# Setup
sudo -u vagrant bundle
sudo -u vagrant bundle exec rake db:create db:migrate
sudo -u vagrant bundle exec rake db:create db:migrate RAILS_ENV=test
sudo -u vagrant bundle exec rspec
sudo su - vagrant -c "cd ~/meppit && bundle"
sudo su - vagrant -c "cd ~/meppit && bundle exec rake db:create db:migrate"
sudo su - vagrant -c "cd ~/meppit && bundle exec rake db:create db:migrate RAILS_ENV=test"
sudo su - vagrant -c "cd ~/meppit && bundle exec rspec"

touch ~/runonce
fi

0 comments on commit 4258304

Please sign in to comment.