aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-09 21:01:23 -0800
committerAdam Vandenberg2011-03-12 11:55:08 -0800
commitbb58511b31c124c81c305b9d67706f5347ec704e (patch)
tree5623501f6b4fd1b5928d63bafd28d6c44d91b84b /Library/Homebrew/exceptions.rb
parent5a30768377e97dd6d98f991edbb4ebee5de62e23 (diff)
downloadbrew-bb58511b31c124c81c305b9d67706f5347ec704e.tar.bz2
Fix 'brew install f' for already-installed brews.
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
-rw-r--r--Library/Homebrew/exceptions.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 66ae2b294..28b46198e 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -35,10 +35,7 @@ module Homebrew
class InstallationError < RuntimeError
attr :formula
- def initialize formula
- @formula = formula
- end
- def initialize formula, message
+ def initialize formula, message=""
super message
@formula = formula
end