ensure `curl --help` backward compatible

This commit is contained in:
PMExtra 2023-01-28 17:19:04 +08:00
parent 7154c9ee5d
commit a5b04a0328
1 changed files with 1 additions and 1 deletions

View File

@ -1852,7 +1852,7 @@ _inithttp() {
_ACME_CURL="$_ACME_CURL --cacert $CA_BUNDLE "
fi
if _contains "$(curl --help curl 2>&1)" "--globoff"; then
if _contains "$(curl --help 2>&1)" "--globoff" || _contains "$(curl --help curl 2>&1)" "--globoff"; then
_ACME_CURL="$_ACME_CURL -g "
fi