aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend/os/mac/development_tools.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-12-30 20:42:18 +0000
committerGitHub2016-12-30 20:42:18 +0000
commit9e2a8248a603bdc4c90c006dc731c4001fdef88f (patch)
tree41139c052ef0b5490a3ad4f880aacc1b2e8654c6 /Library/Homebrew/extend/os/mac/development_tools.rb
parentc29a458dc15efc92e3649155d0ed44bf982cdc15 (diff)
parentb3c6334d3cde6d653427ae29892e3a14af9c5bd9 (diff)
downloadbrew-9e2a8248a603bdc4c90c006dc731c4001fdef88f.tar.bz2
Merge pull request #1725 from MikeMcQuaid/curl-homepage-reliablity
audit: improve reliability of homepage audit.
Diffstat (limited to 'Library/Homebrew/extend/os/mac/development_tools.rb')
-rw-r--r--Library/Homebrew/extend/os/mac/development_tools.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Homebrew/extend/os/mac/development_tools.rb b/Library/Homebrew/extend/os/mac/development_tools.rb
index 7c97b9d69..8c0c48a51 100644
--- a/Library/Homebrew/extend/os/mac/development_tools.rb
+++ b/Library/Homebrew/extend/os/mac/development_tools.rb
@@ -77,8 +77,9 @@ class DevelopmentTools
end
end
- def tar_supports_xz?
- false
+ def curl_handles_most_https_homepages?
+ # The system Curl is too old for some modern HTTPS homepages on Yosemite.
+ MacOS.version >= :el_capitan
end
end
end