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
1 changed files with 1 additions and 1 deletions

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