Merge pull request #3173 from Homebrew/revert-3099-popen_read_stderr

Revert "popen: Do not suppress stderr"
This commit is contained in:
ilovezfs 2017-09-20 09:52:55 -07:00 committed by GitHub
commit 5d888c08a3

View File

@ -13,7 +13,7 @@ module Utils
return pipe.read unless block_given?
yield pipe
else
$stderr.reopen("/dev/null", "w") if !ARGV.debug? && !ARGV.verbose?
$stderr.reopen("/dev/null", "w")
exec(*args)
end
end