mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-08 23:41:45 +00:00
Cleaned up some of the comments from shellcheck.
This commit is contained in:
parent
1167cdcaec
commit
b3e3e080a9
@ -91,7 +91,7 @@ _get_root() {
|
||||
fi
|
||||
|
||||
if _nederhost_rest GET "zones/${_domain}"; then
|
||||
if [ "${_code}" == "204" ]; then
|
||||
if [ "${_code}" = "204" ]; then
|
||||
return 0;
|
||||
fi
|
||||
else
|
||||
@ -112,7 +112,7 @@ _nederhost_rest() {
|
||||
export _H1="Authorization: Bearer $NederHost_Key"
|
||||
export _H2="Content-Type: application/json"
|
||||
|
||||
:>$HTTP_HEADER
|
||||
:>"$HTTP_HEADER"
|
||||
|
||||
if [ "$m" != "GET" ]; then
|
||||
_debug data "$data"
|
||||
|
Loading…
Reference in New Issue
Block a user