Merge pull request #12294 from Bo98/cookie-jar

utils/curl: don't use --cookie-jar to enable cookie engine
This commit is contained in:
Bo Anderson 2021-10-22 00:49:24 +01:00 committed by GitHub
commit e518ea4ee9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"