diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb index c0ff5610cc..12ef1af60d 100644 --- a/Library/Homebrew/extend/ENV.rb +++ b/Library/Homebrew/extend/ENV.rb @@ -57,7 +57,7 @@ module EnvActivation sig { params(key: T.any(String, Symbol)).returns(T::Boolean) } def sensitive?(key) - key.match?(/(cookie|key|token|password)/i) + key.match?(/(cookie|key|token|password|passphrase)/i) end sig { returns(T::Hash[String, String]) }