From 912a383d9b610701ab515e0a08e588da9648304d Mon Sep 17 00:00:00 2001 From: gitlabhq Date: Fri, 14 Oct 2011 17:26:35 +0300 Subject: [PATCH] w/o option was a bad idea --- install.rb | 4 ---- update.rb | 5 ----- 2 files changed, 9 deletions(-) diff --git a/install.rb b/install.rb index de6b83c5601..a118cb5d6f1 100644 --- a/install.rb +++ b/install.rb @@ -15,11 +15,7 @@ env = if envs.include?(ARGV[0]) puts green " == Install for ENV=#{env} ..." # bundle install -if env == "production" -`bundle install --without development test` -else `bundle install` -end # migrate db `bundle exec rake db:create RAILS_ENV=#{env}` diff --git a/update.rb b/update.rb index 9dae135e47e..d7eec2898b2 100644 --- a/update.rb +++ b/update.rb @@ -17,12 +17,7 @@ puts green " == Update for ENV=#{env}" # pull from github `git pull` -# bundle install -if env == "production" -`bundle install --without development test` -else `bundle install` -end # migrate db `bundle exec rake db:migrate RAILS_ENV=#{env}`