aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/install.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index caefbcb40..6b2f5ea0c 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -13,7 +13,8 @@ module Homebrew extend self
ARGV.formulae.each do |f|
if f.linked_keg.directory?
- raise "#{f} already installed\nTry: brew upgrade #{f}"
+ ohai "#{f} already installed"
+ puts "Try: brew upgrade #{f}"
end
end unless ARGV.force?