aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2017-11-27 16:32:03 +0000
committerMike McQuaid2017-11-27 16:32:03 +0000
commitf7baa3b380c1ed38d78da054c99b1b5f3678a645 (patch)
tree0f4003cb8c7b64b17234388daff94060674de57c
parent639707c853827623c9b2f65c8ca16d237538cf46 (diff)
downloadbrew-f7baa3b380c1ed38d78da054c99b1b5f3678a645.tar.bz2
bin/brew: whitelist JENKINS_* vars.
-rwxr-xr-xbin/brew2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/brew b/bin/brew
index 7d36ff92d..f058fa34f 100755
--- a/bin/brew
+++ b/bin/brew
@@ -89,7 +89,7 @@ then
FILTERED_ENV=()
for VAR in HOME SHELL PATH TERM LOGNAME USER CI TRAVIS \
- "${!HOMEBREW_@}" "${!TRAVIS_@}"
+ "${!HOMEBREW_@}" "${!TRAVIS_@}" "${!JENKINS_@}"
do
# Skip if variable value is empty.
[[ -z "${!VAR}" ]] && continue