diff options
| author | Mike McQuaid | 2017-04-22 12:41:42 +0100 |
|---|---|---|
| committer | GitHub | 2017-04-22 12:41:42 +0100 |
| commit | 268f2dbde2f157bab14518a2d725a111a44e00a3 (patch) | |
| tree | 1658f3b7d0cd57919b35dffee94ff4c40da74877 /bin | |
| parent | 44232ab0446f25d0a59ef085870fc620a6337068 (diff) | |
| parent | 69c7a20896813aefa519aaee7b75552731cd672a (diff) | |
| download | brew-268f2dbde2f157bab14518a2d725a111a44e00a3.tar.bz2 | |
Merge pull request #2476 from MikeMcQuaid/edit-env-filtering
Fix `brew edit` with environment filtering.
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brew | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -44,6 +44,14 @@ fi HOMEBREW_LIBRARY="$HOMEBREW_REPOSITORY/Library" +for VAR in EDITOR PATH +do + VAR_NEW="HOMEBREW_${VAR}" + # TODO: find a better solution than this. + env | grep -q "$VAR_NEW" && continue + export "$VAR_NEW"="${!VAR}" +done + if [[ -n "$HOMEBREW_ENV_FILTERING" ]] then PATH="/usr/bin:/bin:/usr/sbin:/sbin" |
