aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-11-10 15:28:25 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-11-10 15:28:25 -0800
commitaef7e214bd2484cd879d67bb92dda6314e0d6435 (patch)
treea11eab8e724ff7715d34def7eb7d953265aade8d /ci
parenta7dc7cd0c4ceccf0e89056d4429a1cfc84418a74 (diff)
downloadrails-aef7e214bd2484cd879d67bb92dda6314e0d6435.tar.gz
rails-aef7e214bd2484cd879d67bb92dda6314e0d6435.tar.bz2
rails-aef7e214bd2484cd879d67bb92dda6314e0d6435.zip
Use an env var to expand the CI bundle. Using bundler's 'only' includes this stuff for everybody, oops.
Diffstat (limited to 'ci')
-rwxr-xr-xci/ci_build.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index b62cca09a5..453479d605 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -25,7 +25,7 @@ cd root_dir do
puts
puts "[CruiseControl] Bundling RubyGems"
puts
- build_results[:bundle] = system 'rm -rf vendor && gem bundle --update'
+ build_results[:bundle] = system 'rm -rf vendor && env CI=1 gem bundle --update'
end
cd "#{root_dir}/activesupport" do