diff options
| author | chdiza | 2015-03-10 10:15:21 -0400 | 
|---|---|---|
| committer | Mike McQuaid | 2015-03-12 08:19:37 +0000 | 
| commit | 21314474cdfa99e85b291bfc7480b3e253774fc8 (patch) | |
| tree | 60be56827cf83f09fcf87af819c6da3d5c887ea3 /Library | |
| parent | 4057a68e6e074d9e3e42a7e94f89723804f9f998 (diff) | |
| download | brew-21314474cdfa99e85b291bfc7480b3e253774fc8.tar.bz2 | |
audit: Clarify GNU url warning message
"ftpmirror.gnu.org" must have a protocol prefix of "http", not
"https".
Closes Homebrew/homebrew#37567.
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 9eac644ad..ebcae17a4 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -311,7 +311,7 @@ class FormulaAuditor      # Check GNU urls; doesn't apply to mirrors      urls.grep(%r[^(?:https?|ftp)://(?!alpha).+/gnu/]) do |u| -      problem "\"ftpmirror.gnu.org\" is preferred for GNU software (url is #{u})." +      problem "\"http://ftpmirror.gnu.org\" is preferred for GNU software (url is #{u})."      end      # the rest of the checks apply to mirrors as well.  | 
