subprocess.rb revision bb73b3ca8ecb1bdbb3f939b88122e8320d71b557
# A wrapper for IO.popen that returns the combined stdout and stderr.
# An exception is thrown if the subprocess exists with non-zero.
super "Subprocess #{args.inspect} exited with status #{status}:\n#{output}"
end
end
end
status = $?.exitstatus
if status != 0
end
end
end