diff options
| -rw-r--r-- | Library/Homebrew/cmd/audit.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 6a5c13a6a..220ccaa81 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -318,6 +318,8 @@ class FormulaAuditor case p when %r[^http://ftp\.gnu\.org/] problem "ftp.gnu.org urls should be https://, not http:// (url is #{p})." + when %r[^http://archive\.apache\.org/] + problem "archive.apache.org urls should be https://, not http (url is #{p})." when %r[^http://code\.google\.com/] problem "code.google.com urls should be https://, not http (url is #{p})." when %r[^http://fossies\.org/] |
