aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2011-04-25 13:08:43 -0700
committerAdam Vandenberg2011-04-25 13:13:16 -0700
commitb31e430836c19b0241fdffb675f033911e91e0ec (patch)
tree8b015a0d0567f1d47a712c9564dda6871ab05921 /Library/Homebrew/exceptions.rb
parent1394baf5a154e21d4008d62ee6b2f061dd60ae41 (diff)
downloadhomebrew-b31e430836c19b0241fdffb675f033911e91e0ec.tar.bz2
Remove reference to 'brew install pip'
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
-rw-r--r--Library/Homebrew/exceptions.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index af311ae01..08faea0e2 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -75,7 +75,7 @@ class UnsatisfiedExternalDependencyError < Homebrew::InstallationError
def tool
case type
- when :python then 'pip'
+ when :python then 'easy_install'
when :ruby, :jruby then 'rubygems'
when :perl then 'cpan'
end
@@ -84,7 +84,7 @@ class UnsatisfiedExternalDependencyError < Homebrew::InstallationError
def command_line
case type
when :python
- "#{brew_pip}pip install"
+ "easy_install install"
when :ruby
"gem install"
when :perl
@@ -93,10 +93,6 @@ class UnsatisfiedExternalDependencyError < Homebrew::InstallationError
"jruby -S gem install"
end
end
-
- def brew_pip
- 'brew install pip && ' unless Formula.factory('pip').installed?
- end
end
class BuildError < Homebrew::InstallationError