aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-07-16 05:36:49 +0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-07-16 05:52:34 +0800
commitea0bf4e664ca6faf7323d3e2a241b6e6d0b86430 (patch)
tree4c41895d3906c0d77d49c38b5e0f828fb23353c8 /ci
parent06c74cf5fe7edc55f43e36a750a8c536014a52c8 (diff)
downloadrails-ea0bf4e664ca6faf7323d3e2a241b6e6d0b86430.tar.gz
rails-ea0bf4e664ca6faf7323d3e2a241b6e6d0b86430.tar.bz2
rails-ea0bf4e664ca6faf7323d3e2a241b6e6d0b86430.zip
CI should bundle update instead of install so gems are properly updated
Diffstat (limited to 'ci')
-rwxr-xr-xci/ci_build.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index 0a39aa4f87..f9933cb922 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -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