Revert "popen: Do not suppress stderr"

This commit is contained in:
ilovezfs 2017-09-19 07:40:29 -07:00 committed by GitHub
parent 81d9f71edb
commit 6fb9fed693

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