aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorchdiza2015-03-10 10:15:21 -0400
committerMike McQuaid2015-03-12 08:19:37 +0000
commit99795d4c7fc366bf512f0610117397185b57d499 (patch)
tree3fda9119869aba2584e44460c5feb1cc242e9513 /Library/Homebrew/cmd
parent79eb534cd48e5f9aa3ffa2fa75e04c76eea8c670 (diff)
downloadhomebrew-99795d4c7fc366bf512f0610117397185b57d499.tar.bz2
audit: Clarify GNU url warning message
"ftpmirror.gnu.org" must have a protocol prefix of "http", not "https". Closes #37567. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/cmd')
-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 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.