Merge pull request #11729 from Rylan12/fix-update-report

update-report: don't try to report Homebrew/core if not needed
This commit is contained in:
Rylan Polster 2021-07-16 12:05:58 -04:00 committed by GitHub
commit 9de68d7dce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,6 +102,7 @@ module Homebrew
updated_taps = []
Tap.each do |tap|
next unless tap.git?
next if tap.core_tap? && ENV["HOMEBREW_JSON_CORE"].present?
begin
reporter = Reporter.new(tap)