From 7c04c34a88924b1edf9268be9a3faf870b78c080 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 12 Jun 2019 12:43:44 +0100 Subject: [PATCH] system_config: hide HOMEBREW_BUNDLE_* env vars. These are being introduced in e.g. https://github.com/Homebrew/homebrew-bundle/pull/486 and we don't care about them in Homebrew bug reports. --- Library/Homebrew/system_config.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/system_config.rb b/Library/Homebrew/system_config.rb index 3e6740b005..2f8924b771 100644 --- a/Library/Homebrew/system_config.rb +++ b/Library/Homebrew/system_config.rb @@ -169,6 +169,7 @@ class SystemConfig unless ENV["HOMEBREW_ENV"] ENV.sort.each do |key, value| next unless key.start_with?("HOMEBREW_") + next if key.start_with?("HOMEBREW_BUNDLE_") next if boring_keys.include?(key) next if defaults_hash[key.to_sym]