mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
Fix for SC2086.
This commit is contained in:
parent
6963f3880d
commit
7b32bbfc26
@ -174,7 +174,7 @@ _namecom_get_root() {
|
|||||||
|
|
||||||
# Need to exclude the last field (tld)
|
# Need to exclude the last field (tld)
|
||||||
numfields=$(echo "$domain" | _egrep_o "\." | wc -l)
|
numfields=$(echo "$domain" | _egrep_o "\." | wc -l)
|
||||||
while [ $i -le $numfields ]; do
|
while [ $i -le "$numfields" ]; do
|
||||||
host=$(printf "%s" "$domain" | cut -d . -f $i-100)
|
host=$(printf "%s" "$domain" | cut -d . -f $i-100)
|
||||||
_debug host "$host"
|
_debug host "$host"
|
||||||
if [ -z "$host" ]; then
|
if [ -z "$host" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user