aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2011-11-15 09:03:12 -0800
committerAdam Vandenberg2011-11-15 09:03:12 -0800
commita8582772cfcb146cd1089fab763b07c222dc1ca6 (patch)
tree6b5c1637de47fa7cf91cd05b6ac2d013f5e72cd2 /Library/Homebrew
parent935d2dbf88c2d4dfac1559529f6a21ce5dbfd94e (diff)
downloadhomebrew-a8582772cfcb146cd1089fab763b07c222dc1ca6.tar.bz2
Mercurial 1.9.3
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/blacklist.rb9
-rw-r--r--Library/Homebrew/download_strategy.rb2
2 files changed, 1 insertions, 10 deletions
diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb
index 35f7354b6..e83211fa9 100644
--- a/Library/Homebrew/blacklist.rb
+++ b/Library/Homebrew/blacklist.rb
@@ -28,15 +28,6 @@ def blacklisted? name
We recommend using a MacTeX distribution: http://www.tug.org/mactex/
EOS
- when 'mercurial', 'hg' then <<-EOS.undent
- Install Mercurial with pip:
-
- easy_install pip && pip install Mercurial
-
- Or easy_install:
-
- easy_install Mercurial
- EOS
when 'pip' then <<-EOS.undent
Install pip with easy_install:
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 2dffccea5..a170459e6 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -442,7 +442,7 @@ class MercurialDownloadStrategy < AbstractDownloadStrategy
def cached_location; @clone; end
def fetch
- raise "You must `easy_install mercurial'" unless system "/usr/bin/which hg"
+ raise "You must install Mercurial: brew install mercurial" unless system "/usr/bin/which hg"
ohai "Cloning #{@url}"