mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Fix curl_output for curl download strategy
This commit is contained in:
parent
1da5cbc81a
commit
f54de5a848
@ -580,6 +580,13 @@ class HomebrewCurlDownloadStrategy < CurlDownloadStrategy
|
||||
|
||||
curl_download resolved_url, to: to, try_partial: @try_partial, timeout: timeout, use_homebrew_curl: true
|
||||
end
|
||||
|
||||
def curl_output(*args, **options)
|
||||
raise HomebrewCurlDownloadStrategyError, url unless Formula["curl"].any_version_installed?
|
||||
|
||||
options[:use_homebrew_curl] = true
|
||||
super(*args, **options)
|
||||
end
|
||||
end
|
||||
|
||||
# Strategy for downloading a file from an GitHub Packages URL.
|
||||
|
Loading…
x
Reference in New Issue
Block a user