diff options
| author | Viktor Szakáts | 2015-04-02 16:53:53 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2015-04-02 16:39:00 +0100 |
| commit | 93136c4b42a47bc72e3bb3f4286ee8735a6da50c (patch) | |
| tree | bdc5658180915dff177517567b42de759bec4b4b /Library | |
| parent | 9a5f67b0110e88068a647b02d6b516160e727f98 (diff) | |
| download | homebrew-93136c4b42a47bc72e3bb3f4286ee8735a6da50c.tar.bz2 | |
audit: enforce https for bare bintray.com domain
Closes #38302.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/audit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 81ed161c3..b486af951 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -338,7 +338,7 @@ 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/] + 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})." |
