aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-11-04 11:50:41 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-11-04 11:50:52 -0800
commitd64e87edd6d6362a18837f438123f9cd56b91f43 (patch)
tree3d1a0bd9d9a159c9372ae417e638e5a759775ca8 /ci
parent0e64eab6a27bebdaaffa1ec10bbbd80bd8d73cb9 (diff)
downloadrails-d64e87edd6d6362a18837f438123f9cd56b91f43.tar.gz
rails-d64e87edd6d6362a18837f438123f9cd56b91f43.tar.bz2
rails-d64e87edd6d6362a18837f438123f9cd56b91f43.zip
Try to remotely troubleshoot bundler issue in CI
Diffstat (limited to 'ci')
-rwxr-xr-xci/ci_build.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index a6f8871f27..e5c632bd01 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -6,7 +6,7 @@ include FileUtils
puts "[CruiseControl] Rails build"
build_results = {}
-root_dir = File.expand_path(File.dirname(__FILE__) + "/..")
+root_dir = File.expand_path('../..', __FILE__)
# Requires gem home and path to be writeable and/or overridden to be ~/.gem,
# Will enable when RubyGems supports this properly (in a coming release)
@@ -20,7 +20,7 @@ cd root_dir do
puts
puts "[CruiseControl] Bundling RubyGems"
puts
- build_results[:bundle] = system 'rm -rf vendor && gem bundle'
+ build_results[:bundle] = system 'rm -rf vendor && gem --debug bundle'
end
cd "#{root_dir}/activesupport" do