audit --online: check homepage reachability

Closes Homebrew/homebrew#41607.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
This commit is contained in:
Baptiste Fontaine 2015-07-11 23:36:03 +02:00
parent 7d0d232fb6
commit 3ba3ecba9d

View File

@ -428,6 +428,13 @@ class FormulaAuditor
%r[^http://code\.google\.com/]
problem "Please use https:// for #{homepage}"
end
return unless @online
begin
nostdout { curl "--connect-timeout", "15", "-IL", "-o", "/dev/null", homepage }
rescue ErrorDuringExecution
problem "The homepage is not reachable (curl exit code #{$?.exitstatus})"
end
end
def audit_github_repository