mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
Make Shellcheck happier about exit codes
This commit is contained in:
parent
f438ff4bab
commit
baa1160594
@ -94,10 +94,12 @@ dns_he_rm() {
|
|||||||
_post "$body" "https://dns.he.net/" \
|
_post "$body" "https://dns.he.net/" \
|
||||||
| grep '<div id="dns_status" onClick="hideThis(this);">Successfully removed record.</div>' \
|
| grep '<div id="dns_status" onClick="hideThis(this);">Successfully removed record.</div>' \
|
||||||
>/dev/null
|
>/dev/null
|
||||||
if [ "$?" -eq 0 ]; then
|
exit_code="$?"
|
||||||
|
if [ "$exit_code" -eq 0 ]; then
|
||||||
_info "Record removed successfuly."
|
_info "Record removed successfuly."
|
||||||
else
|
else
|
||||||
_err "Could not clean (remove) up the record. Please go to HE administration interface and clean it by hand."
|
_err "Could not clean (remove) up the record. Please go to HE administration interface and clean it by hand."
|
||||||
|
return "$exit_code"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user