diff options
| author | Mike McQuaid | 2017-04-23 09:45:47 +0100 |
|---|---|---|
| committer | GitHub | 2017-04-23 09:45:47 +0100 |
| commit | 11acadaa50c1b42f84e21ff42439a10aa9671cd6 (patch) | |
| tree | 41c48c75fda40ceb9c3739bce42f568a38b3f6f7 /Library/Homebrew/global.rb | |
| parent | cb17a80577bbf8812ca4ee6eef97039cd34ebe3e (diff) | |
| parent | d02b4f321d01fbd4cd2b4c1bd76d1f06d1612126 (diff) | |
| download | brew-11acadaa50c1b42f84e21ff42439a10aa9671cd6.tar.bz2 | |
Merge pull request #2524 from MikeMcQuaid/more-env-filtering-fixes
Hide sensitive tokens from install/test/post.
Diffstat (limited to 'Library/Homebrew/global.rb')
| -rw-r--r-- | Library/Homebrew/global.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/global.rb b/Library/Homebrew/global.rb index 391f5b012..8726fa1a4 100644 --- a/Library/Homebrew/global.rb +++ b/Library/Homebrew/global.rb @@ -53,7 +53,7 @@ HOMEBREW_PULL_OR_COMMIT_URL_REGEX = %r[https://github\.com/([\w-]+)/([\w-]+)?/(? require "compat" unless ARGV.include?("--no-compat") || ENV["HOMEBREW_NO_COMPAT"] -ORIGINAL_PATHS = ENV["PATH"].split(File::PATH_SEPARATOR).map do |p| +ORIGINAL_PATHS = ENV["HOMEBREW_PATH"].split(File::PATH_SEPARATOR).map do |p| begin Pathname.new(p).expand_path rescue |
