diff options
| author | Max Howell | 2011-02-13 12:23:48 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-12 11:55:06 -0800 |
| commit | f43be169fe5197b8994bde7c02cd3789f96e66c3 (patch) | |
| tree | e8b4a37329f517a778f3558e8864f29e3879bc6e | |
| parent | a8d185efa01c993a742a4943b37fc0808bfebd8c (diff) | |
| download | brew-f43be169fe5197b8994bde7c02cd3789f96e66c3.tar.bz2 | |
Stop recommending our pip
Seeing as the pip formula doesn't recommend pip anymore, we should stop telling people to use it :P
| -rw-r--r-- | Library/Homebrew/blacklist.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/download_strategy.rb | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb index 6789ba1e7..46233f535 100644 --- a/Library/Homebrew/blacklist.rb +++ b/Library/Homebrew/blacklist.rb @@ -26,7 +26,7 @@ def blacklisted? name when 'mercurial', 'hg' then <<-EOS.undent Install Mercurial with pip: - brew install pip && pip install mercurial + easy_install pip && pip install mercurial Or easy_install: diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index 1350e8e22..c0daf687a 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -364,11 +364,7 @@ class MercurialDownloadStrategy <AbstractDownloadStrategy def cached_location; @clone; end def fetch - raise "You must install mercurial, there are two options:\n\n"+ - " brew install pip && pip install mercurial\n"+ - " easy_install mercurial\n\n"+ - "Homebrew recommends pip over the OS X provided easy_install." \ - unless system "/usr/bin/which hg" + raise "You must `easy_install mercurial'" unless system "/usr/bin/which hg" ohai "Cloning #{@url}" |
