Makes CI builder install --pre version of Bundler, now that bundle install works again

This commit is contained in:
Santiago Pastorino 2010-07-13 14:26:26 -03:00 committed by wycats
parent 6d2e4ee96c
commit 2b22d1240b
1 changed files with 3 additions and 3 deletions

View File

@ -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