diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-01-12 09:46:56 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-01-12 09:47:04 -0800 |
commit | 6ddabaa90c512abf4d319056ce296fa75216623e (patch) | |
tree | 24a809d085aaaf63b89df1e1007f8632966aabf4 /railties | |
parent | 199e220e885277dad5e222bf98f00a67b2e6674e (diff) | |
download | rails-6ddabaa90c512abf4d319056ce296fa75216623e.tar.gz rails-6ddabaa90c512abf4d319056ce296fa75216623e.tar.bz2 rails-6ddabaa90c512abf4d319056ce296fa75216623e.zip |
sorry, the CI cannot lie to us anymore
Diffstat (limited to 'railties')
-rwxr-xr-x | railties/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 1b469543cc..26fa0bf6a5 100755 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -18,7 +18,7 @@ namespace :test do Dir["test/#{dir}/*_test.rb"].each do |file| next true if file.include?("fixtures") ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) - system(ruby, '-Itest', "-I#{File.dirname(__FILE__)}/../activesupport/lib", file) + sh(ruby, '-Itest', "-I#{File.dirname(__FILE__)}/../activesupport/lib", file) end end end |