diff options
| author | Adam Vandenberg | 2011-03-11 14:54:26 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-12 11:55:11 -0800 |
| commit | 7e2a4c2f44c37174d6bc6d982f2a2c5057044599 (patch) | |
| tree | be2de511a6bf2c761c9453f2b115e1cbc36cf074 /Library | |
| parent | d89a2a0b7d50f3ab32f7c4dea3b86d295dde354d (diff) | |
| download | homebrew-7e2a4c2f44c37174d6bc6d982f2a2c5057044599.tar.bz2 | |
Complain if a formula in core won't import.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 3 |
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 |
