diff options
| author | Mike McQuaid | 2017-09-23 10:58:10 +0100 | 
|---|---|---|
| committer | GitHub | 2017-09-23 10:58:10 +0100 | 
| commit | d7fbcc6211e1e71758ec258d5b40aee9bc636ccd (patch) | |
| tree | 76a846d73b599be48d6c183acb7f2ece9868d4d8 /Library/Homebrew/extend/os | |
| parent | 478dc7cd3190ec479f166a17e544ce1dc8bf21ac (diff) | |
| parent | 0e766d00a5dd89e25a523e2018f03e5487bef183 (diff) | |
| download | brew-d7fbcc6211e1e71758ec258d5b40aee9bc636ccd.tar.bz2 | |
Merge pull request #3190 from MikeMcQuaid/curl_https_fix
development_tools: fix curl https handling.
Diffstat (limited to 'Library/Homebrew/extend/os')
| -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 66b3bf9d2..b0d78f45b 100644 --- a/Library/Homebrew/extend/os/mac/development_tools.rb +++ b/Library/Homebrew/extend/os/mac/development_tools.rb @@ -85,7 +85,7 @@ class DevelopmentTools      def curl_handles_most_https_certificates?        # The system Curl is too old for some modern HTTPS certificates on        # older macOS versions. -      !ENV["HOMEBREW_SYSTEM_CURL_TOO_OLD"].nil? +      ENV["HOMEBREW_SYSTEM_CURL_TOO_OLD"].nil?      end      def subversion_handles_most_https_certificates?  | 
