diff --git a/Library/Homebrew/brew_doctor.rb b/Library/Homebrew/brew_doctor.rb index e95cb9198fd3b2d0e46fa05d0d42cf9017c82fbe..9af1f4381e3fcb012b3b6301e20a84154be43b9f 100644 --- a/Library/Homebrew/brew_doctor.rb +++ b/Library/Homebrew/brew_doctor.rb @@ -229,7 +229,7 @@ def check_user_path end def check_which_pkg_config - binary = `which pkg-config`.chomp + binary = `/usr/bin/which pkg-config`.chomp return if binary.empty? unless binary == "#{HOMEBREW_PREFIX}/bin/pkg-config" @@ -245,7 +245,7 @@ def check_which_pkg_config end def check_pkg_config_paths - binary = `which pkg-config`.chomp + binary = `/usr/bin/which pkg-config`.chomp return if binary.empty? # Use the debug output to determine which paths are searched @@ -378,6 +378,22 @@ def check_for_multiple_volumes end end +def check_for_git + git = `/usr/bin/which git`.chomp + if git.empty? + puts <<-EOS.undent + "Git" was not found in your path. + + Homebrew uses Git for several internal functions, and some formulae + (Erlang in particular) use Git checkouts instead of stable tarballs. + + You may want to do: + brew install git + + EOS + end +end + def brew_doctor read, write = IO.pipe @@ -401,6 +417,7 @@ def brew_doctor check_for_dyld_vars check_for_symlinked_cellar check_for_multiple_volumes + check_for_git exit! 0 else diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index 75ae64c1eb6e416c58b23d7b140fc97828f99cda..a735f0279b0627ae679c6c3e5e6d1d6702ae12f7 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -236,6 +236,10 @@ class GitDownloadStrategy <AbstractDownloadStrategy end def fetch + raise "You must install Git:\n\n"+ + " brew install git\n" \ + unless system "/usr/bin/which git" + ohai "Cloning #{@url}" unless @clone.exist? safe_system 'git', 'clone', @url, @clone # indeed, leave it verbose