Skip to content
Snippets Groups Projects
Unverified Commit 7c04c34a authored by Mike McQuaid's avatar Mike McQuaid
Browse files

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.
parent ae025d68
No related branches found
No related tags found
No related merge requests found
......@@ -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]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment