From 2f8a4f86817dac3080bcf5c6057cd00f7df3da4a Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Wed, 12 May 2010 14:45:00 -0700 Subject: [PATCH] Don't silently swallow errors when running test:rails_compatibility. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3772691a..b11ba1fc 100644 --- a/Rakefile +++ b/Rakefile @@ -394,7 +394,7 @@ namespace :test do task :rails_compatibility do `rm -rf test/rails` puts "Checking out rails. Please wait." - system("git clone git://github.com/rails/rails.git test/rails") rescue nil + system("git clone git://github.com/rails/rails.git test/rails") begin rails_versions.each {|version| test_rails_version version}