1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

CI should bundle update instead of install so gems are properly updated

This commit is contained in:
Santiago Pastorino 2010-07-16 05:36:49 +08:00 committed by Aaron Patterson
parent 06c74cf5fe
commit ea0bf4e664

View file

@ -27,7 +27,7 @@ cd root_dir do
puts
puts "[CruiseControl] Bundling RubyGems"
puts
build_results[:bundle] = system 'rm -rf ~/.bundle; env CI=1 bundle install'
build_results[:bundle] = system 'rm -rf ~/.bundle; env CI=1 bundle update'
end
cd "#{root_dir}/activesupport" do