From 2b22d1240be90a75c3f35b7a774d5efc9c4ac68f Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Tue, 13 Jul 2010 14:26:26 -0300 Subject: [PATCH] Makes CI builder install --pre version of Bundler, now that bundle install works again --- ci/ci_build.rb | 6 +++--- 1 file 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 @@ def rake(*tasks) 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 -- GitLab