lib/benchmark_driver/runner/ips.rb in benchmark_driver-0.14.9 vs lib/benchmark_driver/runner/ips.rb in benchmark_driver-0.14.10
- old
+ new
@@ -142,10 +142,10 @@
return yield(f.path)
end
end
def execute(*args)
- stdout = IO.popen(args, &:read) # TODO: print stdout if verbose=2
+ IO.popen(args, &:read) # TODO: print stdout if verbose=2
unless $?.success?
raise "Failed to execute: #{args.shelljoin} (status: #{$?.exitstatus})"
end
end