mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-05 22:11:46 +00:00
append --fail-with-body argument to curl if supported
This commit is contained in:
parent
75d2898efd
commit
0cafc00c4f
5
acme.sh
5
acme.sh
@ -1855,6 +1855,11 @@ _inithttp() {
|
||||
if _contains "$(curl --help 2>&1)" "--globoff"; then
|
||||
_ACME_CURL="$_ACME_CURL -g "
|
||||
fi
|
||||
|
||||
#from curl 7.76: return fail on HTTP errors but keep the body
|
||||
if [ "$_ACME_CURL" ] && _contains "$($_ACME_CURL --help http)" "--fail-with-body"; then
|
||||
_ACME_CURL="$_ACME_CURL --fail-with-body "
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$_ACME_WGET" ] && _exists "wget"; then
|
||||
|
Loading…
Reference in New Issue
Block a user