diff options
| author | Mike McQuaid | 2017-09-23 16:31:52 +0100 |
|---|---|---|
| committer | GitHub | 2017-09-23 16:31:52 +0100 |
| commit | 6b3bb666e880d7140e1199ecedda852f9c68ab79 (patch) | |
| tree | c55cc8e1eb24a641f46190e6e07c6af6b28396d6 /Library/Homebrew/extend/os/mac/development_tools.rb | |
| parent | 3343467475c61d72e6796f35ed0eda5daa8a5513 (diff) | |
| parent | 2f6b8dcf687d99fed1a9eb64c07472cc7ea2c838 (diff) | |
| download | brew-6b3bb666e880d7140e1199ecedda852f9c68ab79.tar.bz2 | |
Merge pull request #3174 from sjackman/popen-options
popen: Do not suppress stderr when HOMEBREW_STDERR
Diffstat (limited to 'Library/Homebrew/extend/os/mac/development_tools.rb')
| -rw-r--r-- | Library/Homebrew/extend/os/mac/development_tools.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/os/mac/development_tools.rb b/Library/Homebrew/extend/os/mac/development_tools.rb index b0d78f45b..1931b398d 100644 --- a/Library/Homebrew/extend/os/mac/development_tools.rb +++ b/Library/Homebrew/extend/os/mac/development_tools.rb @@ -9,7 +9,7 @@ class DevelopmentTools @locate[key] = if (located_tool = original_locate(tool)) located_tool elsif MacOS.version > :tiger - path = Utils.popen_read("/usr/bin/xcrun", "-no-cache", "-find", tool).chomp + path = Utils.popen_read("/usr/bin/xcrun", "-no-cache", "-find", tool, err: :close).chomp Pathname.new(path) if File.executable?(path) end end |
