mirror of
https://github.com/acmesh-official/acme.sh
synced 2025-09-02 15:25:26 +00:00
Fix for SC2039/SC2086
This commit is contained in:
@@ -88,7 +88,7 @@ _get_root() {
|
|||||||
i=$(_math "$i" - 1)
|
i=$(_math "$i" - 1)
|
||||||
|
|
||||||
while true; do
|
while true; do
|
||||||
h=$(printf "%s" "$rdomain" | cut -d . -f $i-100)
|
h=$(printf "%s" "$rdomain" | cut -d . -f "$i"-100)
|
||||||
_debug h "$h"
|
_debug h "$h"
|
||||||
if [ -z "$h" ]; then
|
if [ -z "$h" ]; then
|
||||||
return 1 #not valid domain
|
return 1 #not valid domain
|
||||||
@@ -102,7 +102,7 @@ _get_root() {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
i=$(_math "$i" - 1)
|
i=$(_math "$i" - 1)
|
||||||
if (( i < 2 )); then
|
if $(( i < 2 )); then
|
||||||
return 1 #not found, no need to check _acme-challenge.sub.domain in leaseweb api.
|
return 1 #not found, no need to check _acme-challenge.sub.domain in leaseweb api.
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Reference in New Issue
Block a user