From 37e64a2402b1959c1ce07497b8b6aedd1b3c9f58 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg <flangy@gmail.com> Date: Tue, 9 Jul 2013 20:50:30 -0700 Subject: [PATCH] github doesn't use .io urls --- Library/Homebrew/cmd/audit.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index b983f98a48..6e86043fe8 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -204,8 +204,10 @@ class FormulaAuditor problem "Google Code homepage should end with a slash (url is #{f.homepage})." end - if f.homepage =~ %r[^http://.*\.github\.com/] - problem "GitHub pages should use the github.io domain (url is #{f.homepage})" + if f.homepage =~ %r[^http://(.*)\.github\.com/] + if $1 != 'github' + problem "GitHub pages should use the github.io domain (url is #{f.homepage})" + end end urls = @specs.map(&:url) -- GitLab