From 5137244c92d6b7ea2f3b85d533a33977f052757b Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Mon, 4 Oct 2021 19:47:04 +0100 Subject: [PATCH] download_strategy: adjust --insecure warning wording Co-authored-by: Rylan Polster --- Library/Homebrew/download_strategy.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index aa7f3c8b0b..f2c34437d9 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -547,7 +547,8 @@ class CurlDownloadStrategy < AbstractFileDownloadStrategy if meta[:insecure] unless @insecure_warning_shown opoo "Using --insecure with curl to download `ca-certificates` " \ - "because we need it installed to download securely." + "because we need it installed to download securely from now on. " \ + "Checksums will still be verified." @insecure_warning_shown = true end args += ["--insecure"]