CI: restore sudo for bundler gem install

This commit is contained in:
Jeremy Kemper 2010-02-26 09:14:12 -08:00
parent e1daf3fb73
commit 47260598be
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ puts "[CruiseControl] Rails build"
build_results = {}
# Install required version of bundler.
bundler_install_cmd = "gem install bundler -v 0.9.8 --no-ri --no-rdoc"
bundler_install_cmd = "sudo gem install bundler -v 0.9.8 --no-ri --no-rdoc"
puts "Running command: #{bundler_install_cmd}"
build_results[:install_bundler] = system bundler_install_cmd