aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-11 14:54:26 -0800
committerAdam Vandenberg2011-03-12 11:55:11 -0800
commit4f22b70b4784606b7637a0c7b4a6f7594f2ee055 (patch)
treea8d054ec1cba6874503e2b45e86302891ac99eab /Library
parent0e0d72e49fc492256c6030827c9512d45ba2f406 (diff)
downloadbrew-4f22b70b4784606b7637a0c7b4a6f7594f2ee055.tar.bz2
Complain if a formula in core won't import.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 654713e73..c2bef22c2 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -285,7 +285,8 @@ class Formula
begin
yield Formula.factory(n)
rescue
- # Don't let one broken formula break commands.
+ # Don't let one broken formula break commands. But do complain.
+ onoe "Formula #{n} will not import."
end
end
end