diff options
author | Carl Lerche <carllerche@mac.com> | 2010-02-01 15:08:40 -0800 |
---|---|---|
committer | Carl Lerche <carllerche@mac.com> | 2010-02-01 15:08:40 -0800 |
commit | 16c0d1d3b6089bb4b0b0baf7c3eeb5949f31f02b (patch) | |
tree | b7ea69dc1df283176bdcc05a74444bb136c56e57 /ci | |
parent | 90ab1a6a4d0ed9ac18488c27fda42163a143f287 (diff) | |
download | rails-16c0d1d3b6089bb4b0b0baf7c3eeb5949f31f02b.tar.gz rails-16c0d1d3b6089bb4b0b0baf7c3eeb5949f31f02b.tar.bz2 rails-16c0d1d3b6089bb4b0b0baf7c3eeb5949f31f02b.zip |
Run bundle exec rake instead of bin/rake during CI
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/ci_build.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb index 064d593931..5b6d066c2f 100755 --- a/ci/ci_build.rb +++ b/ci/ci_build.rb @@ -7,7 +7,7 @@ def root_dir end def rake(*tasks) - tasks.each { |task| return false unless system("#{root_dir}/bin/rake", task) } + tasks.each { |task| return false unless system("bundle exec rake", task) } true end |