lib/parallel_tests/tasks.rb in parallel_tests-2.2.0 vs lib/parallel_tests/tasks.rb in parallel_tests-2.2.1

- old
+ new

@@ -17,10 +17,10 @@ command = "#{executable} --exec '#{cmd}'#{count}#{' --non-parallel' if options[:non_parallel]}" abort unless system(command) end # this is a crazy-complex solution for a very simple problem: - # removing certain lines from the output without chaning the exit-status + # removing certain lines from the output without changing the exit-status # normally I'd not do this, but it has been lots of fun and a great learning experience :) # # - sed does not support | without -r # - grep changes 0 exitstatus to 1 if nothing matches # - sed changes 1 exitstatus to 0