From ecba7b4e7e172b625752048178cff81a232784e0 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Fri, 5 Dec 2014 17:02:29 -0500 Subject: [PATCH] Stop supporting hg found in share/python --- Library/Homebrew/download_strategy.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index 0d863ea4f4..1e84bb272e 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -621,12 +621,10 @@ class MercurialDownloadStrategy < VCSDownloadStrategy def cache_tag; "hg" end def hgpath - # Note: #{HOMEBREW_PREFIX}/share/python/hg is deprecated @path ||= %W[ #{which("hg")} #{HOMEBREW_PREFIX}/bin/hg #{HOMEBREW_PREFIX}/opt/mercurial/bin/hg - #{HOMEBREW_PREFIX}/share/python/hg ].find { |p| File.executable? p } end