1
0
mirror of https://github.com/hiskaNG/acme.sh.git synced 2026-08-16 19:03:03 +00:00

Merge pull request #596 from Neilpang/dev

fix https://github.com/Neilpang/acme.sh/issues/593
This commit is contained in:
neil
2017-02-10 13:37:24 +08:00
committed by GitHub
+1 -1
View File
@@ -93,7 +93,7 @@ _get_root() {
fi
if _contains "$response" "<Name>$h.</Name>"; then
hostedzone="$(echo "$response" | _egrep_o "<HostedZone><Id>[^<]*<.Id><Name>$h.<.Name>.*<.HostedZone>")"
hostedzone="$(echo "$response" | sed 's/<HostedZone>/#&/g' | tr '#' '\n' | _egrep_o "<HostedZone><Id>[^<]*<.Id><Name>$h.<.Name>.*<.HostedZone>")"
_debug hostedzone "$hostedzone"
if [ -z "$hostedzone" ]; then
_err "Error, can not get hostedzone."