Merge pull request #11733 from Rylan12/fix-update-report-reporting

update-report: still report homebrew/core changes if they are updated
This commit is contained in:
Rylan Polster 2021-07-17 13:17:01 -04:00 committed by GitHub
commit 12d272abe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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