diff options
| author | Mike McQuaid | 2017-09-15 10:17:40 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2017-09-15 10:17:40 +0100 |
| commit | 2e43d95498eedd3c61f7c013a0a419c2c0aac098 (patch) | |
| tree | 34f4604314e777e9513c6903ce404e33e8642a7e | |
| parent | dce8938373ab465b3af111c92cc27d55d7010dca (diff) | |
| download | brew-2e43d95498eedd3c61f7c013a0a419c2c0aac098.tar.bz2 | |
audit: fix check_http_content args.
| -rw-r--r-- | Library/Homebrew/dev-cmd/audit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 783237826..4220fce47 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -1206,7 +1206,7 @@ class ResourceAuditor # A `brew mirror`'ed URL is usually not yet reachable at the time of # pull request. next if url =~ %r{^https://dl.bintray.com/homebrew/mirror/} - if http_content_problem = FormulaAuditor.check_http_content(url, name, require_http: require_http) + if http_content_problem = FormulaAuditor.check_http_content(url, require_http: require_http) problem http_content_problem end elsif strategy <= GitDownloadStrategy |
