diff options
| author | Dominyk Tiller | 2016-01-03 20:47:50 +0000 | 
|---|---|---|
| committer | Dominyk Tiller | 2016-01-04 03:10:10 +0000 | 
| commit | e7738d067f9ea0e08f2f2f591c4203676e37ba96 (patch) | |
| tree | 15ef19cfba98ac58c22086ce212ac28d7e0c14cb /Library | |
| parent | 821dbab5f88e9dcbb9f08ba5ef3d8e1bf5dece3b (diff) | |
| download | brew-e7738d067f9ea0e08f2f2f591c4203676e37ba96.tar.bz2 | |
utils: extend brewed_curl recommended usage to 10.8
Closes Homebrew/homebrew#47646.
Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/utils.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index a709827a5..bad26dfac 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"  | 
