From 3f9f8bbee4652ff280dc1dbd1374c133e9ac7026 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Sun, 9 Dec 2012 18:33:14 -0800 Subject: Use exec to run tests to preserve exit code --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index dd24f1df..f1c7a39b 100644 --- a/Rakefile +++ b/Rakefile @@ -55,7 +55,7 @@ task :test do Dir['spec/**/*_spec.rb'] end all_specs.shuffle! if all_specs.respond_to? :shuffle! - system "bacon -Ispec -rubygems -q #{all_specs.join ' '}" + exec "bacon -Ispec -rubygems -q #{all_specs.join ' '}" end task :spec => :test -- cgit v1.2.1