diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-01-13 10:55:41 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-01-13 10:55:41 -0200 |
commit | 9a57a2279eda066627b749a0a19a4ac4c49f48eb (patch) | |
tree | 5a72229c2b433a1b7d524b61f2720e330b1bccee /activeresource/Rakefile | |
parent | 3165dca28c1db741994c3176e7b158a9f684e816 (diff) | |
download | rails-9a57a2279eda066627b749a0a19a4ac4c49f48eb.tar.gz rails-9a57a2279eda066627b749a0a19a4ac4c49f48eb.tar.bz2 rails-9a57a2279eda066627b749a0a19a4ac4c49f48eb.zip |
sorry, the CI cannot lie to us anymore (Part II)
Diffstat (limited to 'activeresource/Rakefile')
-rwxr-xr-x | activeresource/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activeresource/Rakefile b/activeresource/Rakefile index cf01bc1389..42e450da66 100755 --- a/activeresource/Rakefile +++ b/activeresource/Rakefile @@ -19,7 +19,7 @@ namespace :test do ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) activesupport_path = "#{File.dirname(__FILE__)}/../activesupport/lib" Dir.glob("test/**/*_test.rb").all? do |file| - system(ruby, '-w', "-Ilib:test:#{activesupport_path}", file) + sh(ruby, '-w', "-Ilib:test:#{activesupport_path}", file) end or raise "Failures" end end |