mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 13:11:41 +00:00
https://github.com/acmesh-official/acme.sh/issues/3898
This commit is contained in:
parent
7250a300df
commit
90b65c6618
3
acme.sh
3
acme.sh
@ -1253,7 +1253,8 @@ _createcsr() {
|
||||
domainlist="$(_idn "$domainlist")"
|
||||
_debug2 domainlist "$domainlist"
|
||||
alt="$(_getIdType "$domain" | _upper_case):$(_idn "$domain")"
|
||||
for dl in $(echo "$domainlist" | tr "," ' '); do
|
||||
for dl in $(echo "'$domainlist'" | sed "s/,/' '/g"); do
|
||||
dl=$(echo "$dl" | tr -d "'")
|
||||
alt="$alt,$(_getIdType "$dl" | _upper_case):$dl"
|
||||
done
|
||||
#multi
|
||||
|
Loading…
Reference in New Issue
Block a user