You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A webroot path with a space gets wrongly split up due to missing quotes at the three for ventry in $ventries; do loops.
Quoting "$ventries"resolves this issue.
Another issue - proabably related to this (otherwise somebody should have stumpled upon that already) - is a malfomed url string: url='https://acme.zerossl.com/v2/DV90/authz/MDSG3E7lE72Y3gmzu0_itA '.
I made previously a false assumption here, that this is also due to an unquoted string. This is not the case.
Trimming the whitespace with url=$(printf "$1" | xargs) seems to do the trick
The text was updated successfully, but these errors were encountered:
Please upgrade to the latest code and try again first. Maybe it's already fixed. acme.sh --upgrade If it's still not working, please provide the log with --debug 2, otherwise, nobody can help you.
A webroot path with a space gets wrongly split up due to missing quotes at the three
for ventry in $ventries; do
loops.Quoting
"$ventries"
resolves this issue.Another issue - proabably related to this (otherwise somebody should have stumpled upon that already) - is a malfomed url string:
url='https://acme.zerossl.com/v2/DV90/authz/MDSG3E7lE72Y3gmzu0_itA '
.I made previously a false assumption here, that this is also due to an unquoted string. This is not the case.
Trimming the whitespace with
url=$(printf "$1" | xargs)
seems to do the trickThe text was updated successfully, but these errors were encountered: