Browse Source

fix typo

pull/2126/head
neilpang 7 years ago
parent
commit
e128b4b6bf
  1. 4
      acme.sh

4
acme.sh

@ -4236,7 +4236,7 @@ $_authorizations_map"
_debug Le_LinkCert "$Le_LinkCert" _debug Le_LinkCert "$Le_LinkCert"
_tempSignedResponse="$response" _tempSignedResponse="$response"
if [ -z "$Le_LinkCert" ]; then if [ -z "$Le_LinkCert" ]; then
if ! _contains "$response" "\"status\": \"processing\""; then
if ! _contains "$response" "\"processing\""; then
_err "Sign error, wrong status" _err "Sign error, wrong status"
_err "$response" _err "$response"
fi fi
@ -4244,7 +4244,7 @@ $_authorizations_map"
if [ "$Le_LinkCert" ]; then if [ "$Le_LinkCert" ]; then
break; break;
fi fi
_link_cert_retry="$($_link_cert_retry + 1)"
_link_cert_retry="$(_math $_link_cert_retry + 1)"
_sleep 5 _sleep 5
done done
if [ -z "$Le_LinkCert" ]; then if [ -z "$Le_LinkCert" ]; then

Loading…
Cancel
Save