From 8713918bdb4061082e59b12a5e96ae03b0af0bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=8E=E6=89=87=E6=BB=91=E7=BF=94=E7=BF=BC?= Date: Wed, 20 Aug 2025 12:41:27 +0800 Subject: [PATCH] Fix ipv6 cert cannot be found --- acme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme.sh b/acme.sh index d9ae208a..4b48036a 100755 --- a/acme.sh +++ b/acme.sh @@ -5565,7 +5565,7 @@ renewAll() { _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT} _debug "_set_level" "$_set_level" export _ACME_IN_RENEWALL=1 - for di in "${CERT_HOME}"/*.*/; do + for di in "${CERT_HOME}"/*/; do _debug di "$di" if ! [ -d "$di" ]; then _debug "Not a directory, skipping: $di"