diff options
| author | Jack Nagel | 2014-02-28 23:04:37 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-02-28 23:05:28 -0600 |
| commit | 27de1257e3fb5d218b5829b4ed9293d05ebd27ac (patch) | |
| tree | fd99c3b8b87f84d986ff48a4967495768ebf4405 | |
| parent | 02270c5edba84d7a6546e346b29343d4ab261db6 (diff) | |
| download | brew-27de1257e3fb5d218b5829b4ed9293d05ebd27ac.tar.bz2 | |
audit: don't complain about missing cross-tap dependencies
| -rw-r--r-- | Library/Homebrew/cmd/audit.rb | 3 |
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 |
