aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorJack Nagel2014-07-19 23:50:59 -0500
committerJack Nagel2014-07-19 23:50:59 -0500
commit90ce7957e6fcec7c68ed7549c8d709dbd33fab4c (patch)
tree9a01bc2c4e4fb2c0f73bae02b047fb1461277e8d /Library/Homebrew/cmd
parent43448ef2e812efba84d56d1faa95e7aded43dc08 (diff)
downloadhomebrew-90ce7957e6fcec7c68ed7549c8d709dbd33fab4c.tar.bz2
Pass the string directly to the output method
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/doctor.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 47af8d5c4..150146329 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -1143,11 +1143,9 @@ module Homebrew
EOS
end
- lines = out.to_s.split('\n')
puts
- opoo lines.shift
+ opoo out
Homebrew.failed = true
- puts lines
first_warning = false
end
end