mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2026-01-03 03:09:41 +08:00
Fix list command for POSIX sh by avoiding brace expansion
This commit is contained in:
3
acme.sh
3
acme.sh
@@ -5845,7 +5845,8 @@ list() {
|
||||
if [ -z "$_domain" ]; then
|
||||
printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}Profile${_sep}CA${_sep}Created${_sep}Renew"
|
||||
fi
|
||||
for di in "${CERT_HOME}"/{*.*,*:*}/; do
|
||||
for di in "${CERT_HOME}"/*.* "${CERT_HOME}"/*:*; do
|
||||
[ -d "$di" ] || continue
|
||||
d=$(basename "$di")
|
||||
_debug d "$d"
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user