From 0894955895313f40d6c3b331fd9b0f3cce003c2f Mon Sep 17 00:00:00 2001 From: neil Date: Wed, 8 Apr 2026 22:33:30 +0800 Subject: [PATCH] fix https://github.com/acmesh-official/acme.sh/pull/6731#issuecomment-3733144962 --- acme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme.sh b/acme.sh index d54ad470..454cfea8 100755 --- a/acme.sh +++ b/acme.sh @@ -5672,7 +5672,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}"/*.* "${CERT_HOME}"/*:*; do _debug di "$di" if ! [ -d "$di" ]; then _debug "Not a directory, skipping: $di"