From 2d539bc6afd4226c5417ab8f2ac2627677c675d8 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Thu, 21 Oct 2021 22:52:18 +0100 Subject: [PATCH] utils/curl: don't use --cookie-jar to enable cookie engine Fixes #12293. --- Library/Homebrew/utils/curl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils/curl.rb b/Library/Homebrew/utils/curl.rb index 2762aeb30b..201f98bdf6 100644 --- a/Library/Homebrew/utils/curl.rb +++ b/Library/Homebrew/utils/curl.rb @@ -52,7 +52,7 @@ module Utils args << "--disable" unless Homebrew::EnvConfig.curlrc? # echo any cookies received on a redirect - args << "--cookie-jar" << "/dev/null" + args << "--cookie" << "/dev/null" args << "--globoff"