aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilovezfs2017-09-24 00:53:24 -0700
committerGitHub2017-09-24 00:53:24 -0700
commitcd1cb7080dac52b87bae2e810cf3bdcd80b34d3c (patch)
tree429b3738a0f4a1f285a30e79812d168e79c301c9
parent4f9c7cab7677289b752aaab19bfc3f3263e795f3 (diff)
parent28c78384501e159ecb45e0ffa29ff419a22701d8 (diff)
downloadbrew-cd1cb7080dac52b87bae2e810cf3bdcd80b34d3c.tar.bz2
Merge pull request #3203 from ilovezfs/online-science-dupes-are-not-dupes
audit: also skip homebrew/science duplicates found by search_taps
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb1
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