mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-08 23:41:45 +00:00
fix shellcheck issues
This commit is contained in:
parent
719b690451
commit
d43227ede4
@ -153,8 +153,8 @@ _get_root() {
|
||||
if _contains "$response" '"success":true'; then
|
||||
_domain=$(printf "%s\n" "$response" | _egrep_o "\"name\":\"[^\"]*\"" | cut -d : -f 2 | tr -d \" | head -n 1)
|
||||
if [ "$_domain" ]; then
|
||||
_cutlength=$(expr ${#domain} - ${#_domain} - 1)
|
||||
_sub_domain=$(printf "%s" "$domain" | cut -c 1-$_cutlength)
|
||||
_cutlength=$((${#domain} - ${#_domain} - 1))
|
||||
_sub_domain=$(printf "%s" "$domain" | cut -c "1-$_cutlength")
|
||||
_domain_id=$CF_Zone_ID
|
||||
return 0
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user