aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2011-09-16 10:05:11 -0700
committerAdam Vandenberg2011-09-16 10:05:11 -0700
commitd43e3516d8a7e5b5af0449c41ea0913efe84998f (patch)
treeb11cf74e09acb00cb5be3f753348d1adbe255767
parent3eea4125a2e3a8e7d58e36e8b72c20a2d46adfb5 (diff)
downloadhomebrew-d43e3516d8a7e5b5af0449c41ea0913efe84998f.tar.bz2
doctor: restore some line breaks
-rw-r--r--Library/Homebrew/cmd/doctor.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 7b5549f63..e8f014392 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -666,6 +666,7 @@ def check_for_linked_kegonly_brews
EOS
puts *warnings.keys.collect { |f| " #{f}" }
+ puts
end
end
@@ -746,6 +747,7 @@ def check_missing_deps
if s.length > 0
ohai "You should brew install these missing dependencies:"
puts s
+ puts
end
end
@@ -754,6 +756,7 @@ def check_git_status
if system "/usr/bin/which -s git" and not `#{status_cmd}`.empty?
ohai "You have uncommitted modifications to Homebrew core"
puts "Unless you know what you are doing, you should: git reset --hard"
+ puts
end
end