aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-11-10 15:32:09 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-11-10 15:32:09 -0800
commit907858c1fe24ea6e3a48cbc0d6e61ea07c0a0624 (patch)
tree7505f3603996a9f774bb161e091f08b31d371aa9 /ci
parentaef7e214bd2484cd879d67bb92dda6314e0d6435 (diff)
downloadrails-907858c1fe24ea6e3a48cbc0d6e61ea07c0a0624.tar.gz
rails-907858c1fe24ea6e3a48cbc0d6e61ea07c0a0624.tar.bz2
rails-907858c1fe24ea6e3a48cbc0d6e61ea07c0a0624.zip
CI: shush complaints about 777 perms
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 453479d605..9af407bc2e 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 && env CI=1 gem bundle --update'
+ build_results[:bundle] = system 'rm -rf vendor && env CI=1 gem bundle --update && chmod 755 bin'
end
cd "#{root_dir}/activesupport" do