Browse Source

Merge pull request #6731 from jdevera/posix_globs_for_list

Fix `--list` regression in POSIX / Docker environments
pull/6572/merge
neil 1 week ago
committed by GitHub
parent
commit
dc6a996cc3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 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"
(

Loading…
Cancel
Save