From e7738d067f9ea0e08f2f2f591c4203676e37ba96 Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Sun, 3 Jan 2016 20:47:50 +0000 Subject: [PATCH] utils: extend brewed_curl recommended usage to 10.8 Closes Homebrew/homebrew#47646. Signed-off-by: Dominyk Tiller --- Library/Homebrew/utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index a709827a52..bad26dfac1 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -293,7 +293,7 @@ end def curl(*args) brewed_curl = HOMEBREW_PREFIX/"opt/curl/bin/curl" - curl = if MacOS.version <= "10.6" && brewed_curl.exist? + curl = if MacOS.version <= "10.8" && brewed_curl.exist? brewed_curl else Pathname.new "/usr/bin/curl"