From 4f22b70b4784606b7637a0c7b4a6f7594f2ee055 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Fri, 11 Mar 2011 14:54:26 -0800 Subject: [PATCH] Complain if a formula in core won't import. --- Library/Homebrew/formula.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 654713e737..c2bef22c24 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