Stop recommending our pip

Seeing as the pip formula doesn't recommend pip anymore, we should stop telling people to use it :P
This commit is contained in:
Max Howell 2011-02-13 12:23:48 +00:00 committed by Adam Vandenberg
parent a8d185efa0
commit f43be169fe
2 changed files with 2 additions and 6 deletions

View File

@ -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:

View File

@ -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}"