aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/cmd/audit.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 37ad88dd8..31c0fbaeb 100755
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -237,11 +237,12 @@ def audit_formula_urls f
end
# Check GNU urls
- urls.each do |p|
- if p =~ %r[^(https?|ftp)://(.+)/gnu/]
- problems << " * \"ftpmirror.gnu.org\" is preferred for GNU software."
- end
- end
+ # FIXME only check primary URLs, not mirrors
+ # urls.each do |p|
+ # if p =~ %r[^(https?|ftp)://(.+)/gnu/]
+ # problems << " * \"ftpmirror.gnu.org\" is preferred for GNU software."
+ # end
+ # end
return problems
end