fix Shellcheck

pull/5117/head
alviy 2024-04-26 23:25:38 +03:00 committed by GitHub
parent 4bf4259dda
commit 1078fdc157
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -102,11 +102,11 @@ dns_alviy_rm() {
# _domain=domain.com
_get_root() {
domain=$1
i=2
h=$(printf "%s" "$domain" | rev | cut -d . -f 1-2 | rev)
if [ -z "$h" ]; then
#not valid
_debug "can't get host from $domain"
hd=$(printf "%s" "$domain" | rev)
_debug "can't get host from $domain $hd"
return 1
fi