Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Library/Homebrew/resource_auditor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ def audit_urls
raise HomebrewCurlDownloadStrategyError, url if
strategy <= HomebrewCurlDownloadStrategy && !Formula["curl"].any_version_installed?

# Skip ftp.gnu.org audit
# See issue: https://github.com/Homebrew/brew/issues/20456
next if url.match?(%r{^https?://ftp\.gnu\.org/.+})

# Skip https audit for curl dependencies
if !curl_dep && (http_content_problem = curl_check_http_content(
url,
Expand Down
Loading