diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index d38e07a691..e6e772d2a7 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -437,7 +437,7 @@ class CurlDownloadStrategy < AbstractFileDownloadStrategy end def curl(*args, **options) - args << "--connect-timeout" << "5" unless mirrors.empty? + args << "--connect-timeout" << "15" unless mirrors.empty? super(*_curl_args, *args, **_curl_opts, **options) end end