readall: stop using no longer needed 'nostdout'

Since switching from `system` to `Utils.popen_read` we no longer need to
suppress Ruby's output of `Syntax OK` to `$stdout`.
This commit is contained in:
Martin Afanasjew 2016-04-20 17:47:10 +02:00
parent a61829da46
commit 30c0d97e5c

View File

@ -17,7 +17,6 @@ module Homebrew
end end
failed = false failed = false
nostdout do
workers = (0...Hardware::CPU.cores).map do workers = (0...Hardware::CPU.cores).map do
Thread.new do Thread.new do
begin begin
@ -29,8 +28,7 @@ module Homebrew
end end
end end
end end
workers.map(&:join) workers.each(&:join)
end
Homebrew.failed = failed Homebrew.failed = failed
end end