aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorJack Nagel2014-02-28 23:04:37 -0600
committerJack Nagel2014-02-28 23:05:28 -0600
commit27de1257e3fb5d218b5829b4ed9293d05ebd27ac (patch)
treefd99c3b8b87f84d986ff48a4967495768ebf4405 /Library/Homebrew
parent02270c5edba84d7a6546e346b29343d4ab261db6 (diff)
downloadbrew-27de1257e3fb5d218b5829b4ed9293d05ebd27ac.tar.bz2
audit: don't complain about missing cross-tap dependencies
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/audit.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 3a8aa876f..47b673c5f 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -137,6 +137,9 @@ class FormulaAuditor
f.deps.each do |dep|
begin
dep_f = dep.to_formula
+ rescue TapFormulaUnavailableError
+ # Don't complain about missing cross-tap dependencies
+ next
rescue FormulaUnavailableError
problem "Can't find dependency #{dep.name.inspect}."
next