diff options
| author | ilovezfs | 2017-09-24 00:29:34 -0700 |
|---|---|---|
| committer | ilovezfs | 2017-09-24 00:29:34 -0700 |
| commit | 28c78384501e159ecb45e0ffa29ff419a22701d8 (patch) | |
| tree | 429b3738a0f4a1f285a30e79812d168e79c301c9 | |
| parent | 4f9c7cab7677289b752aaab19bfc3f3263e795f3 (diff) | |
| download | brew-28c78384501e159ecb45e0ffa29ff419a22701d8.tar.bz2 | |
audit: also skip homebrew/science duplicates found by search_taps
Follow-up to #3202.
| -rw-r--r-- | Library/Homebrew/dev-cmd/audit.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index a9768c856..743b9484e 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -430,6 +430,7 @@ class FormulaAuditor if @online Homebrew.search_taps(name, silent: true).each do |tap_formula_full_name| + next if tap_formula_full_name.start_with?("homebrew/science/") tap_formula_name = tap_formula_full_name.split("/").last next if tap_formula_name != name same_name_tap_formulae << tap_formula_full_name |
