From a1ecb02736910492bd12f1284dcfbea763729bf0 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Fri, 16 Jul 2021 11:35:51 -0400 Subject: [PATCH] update-report: don't try to report Homebrew/core if not needed --- Library/Homebrew/cmd/update-report.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/cmd/update-report.rb b/Library/Homebrew/cmd/update-report.rb index cdc44a7e72..eb8cb08f16 100644 --- a/Library/Homebrew/cmd/update-report.rb +++ b/Library/Homebrew/cmd/update-report.rb @@ -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)