From 3898010309d51d9c7a91fecb2f5bdbcb80e38180 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Fri, 16 Sep 2011 10:05:11 -0700 Subject: [PATCH] doctor: restore some line breaks --- Library/Homebrew/cmd/doctor.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 7b5549f630..e8f014392c 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