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
commit7078af82184d09e977a7aa8a186dfb643395fbfa (patch)
treea55c92f00eb5009d0628bbc2700d5bb653e0a608 /Library/Homebrew/cmd
parentd2aeadb1cd087081c7631622e01d8522e63e27eb (diff)
downloadbrew-7078af82184d09e977a7aa8a186dfb643395fbfa.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