diff options
| author | Viktor Szakáts | 2015-03-30 21:50:04 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2015-03-31 12:55:24 +0100 |
| commit | cd18123148c3cd271d8d113247407f4fa88a1fce (patch) | |
| tree | be0c5dd518ae8d9ca9e4ef64e22aef35fd8b2be9 /Library/Homebrew | |
| parent | 5690e69425fba7e12bdf26a1c51f7dcde695c937 (diff) | |
| download | homebrew-cd18123148c3cd271d8d113247407f4fa88a1fce.tar.bz2 | |
audit: enforce https on *.bintray.com urls
Closes #38209.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew')
| -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 13fda12c0..81ed161c3 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -338,6 +338,8 @@ class FormulaAuditor problem "Fossies urls should be https://, not http (url is #{p})." when %r[^http://mirrors\.kernel\.org/] problem "mirrors.kernel urls should be https://, not http (url is #{p})." + when %r[^http://[^/]*\.bintray\.com/] + problem "Bintray urls should be https://, not http (url is #{p})." when %r[^http://tools\.ietf\.org/] problem "ietf urls should be https://, not http (url is #{p})." end |
