aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-07-13 14:26:26 -0300
committerwycats <wycats@gmail.com>2010-07-13 10:35:04 -0700
commit2b22d1240be90a75c3f35b7a774d5efc9c4ac68f (patch)
tree584eecafaebb1b9c1d9ce7fc958407f739ddef54 /ci
parent6d2e4ee96c22502380dc94bebdead56133143b9e (diff)
downloadrails-2b22d1240be90a75c3f35b7a774d5efc9c4ac68f.tar.gz
rails-2b22d1240be90a75c3f35b7a774d5efc9c4ac68f.tar.bz2
rails-2b22d1240be90a75c3f35b7a774d5efc9c4ac68f.zip
Makes CI builder install --pre version of Bundler, now that bundle install works again
Diffstat (limited to 'ci')
-rwxr-xr-xci/ci_build.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index 17f4ba5d51..0a39aa4f87 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -19,9 +19,9 @@ puts "[CruiseControl] Rails build"
build_results = {}
# Install required version of bundler.
-#bundler_install_cmd = "gem install bundler --no-ri --no-rdoc"
-#puts "Running command: #{bundler_install_cmd}"
-#build_results[:install_bundler] = system bundler_install_cmd
+bundler_install_cmd = "sudo gem install bundler --pre --no-ri --no-rdoc"
+puts "Running command: #{bundler_install_cmd}"
+build_results[:install_bundler] = system bundler_install_cmd
cd root_dir do
puts