aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorViktor Szakáts2015-04-02 16:53:53 +0200
committerMike McQuaid2015-04-02 16:39:00 +0100
commit93136c4b42a47bc72e3bb3f4286ee8735a6da50c (patch)
treebdc5658180915dff177517567b42de759bec4b4b /Library
parent9a5f67b0110e88068a647b02d6b516160e727f98 (diff)
downloadhomebrew-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.rb2
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})."