Issue2547 wrong url construction for multiple dns services

Fix for problem in https://github.com/acmesh-official/acme.sh/issues/2547#issuecomment-672830796
This commit is contained in:
Alexilmarranen 2020-08-12 15:17:54 +03:00 committed by GitHub
parent 7cfbf100eb
commit 4e0de22375
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ _get_root() {
if _contains "$_all_domains" "^$h$"; then
_sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p)
_domain=$h
_service=$(printf "%s" "$response" | grep "idn-name=\"$_domain\"" | sed -r "s/.*service=\"(.*)\".*$/\1/")
_service=$(printf "%s" "$response" | grep -m 1 "idn-name=\"$_domain\"" | sed -r "s/.*service=\"(.*)\".*$/\1/")
return 0
fi
p="$i"