1
0
mirror of https://github.com/hiskang/acme.sh synced 2025-06-15 11:56:24 +00:00

fix " " to " " to pass travis

This commit is contained in:
hiska 2018-02-12 18:12:23 +09:00 committed by GitHub
parent 87f459d78e
commit 86ca9a354c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -235,7 +235,7 @@ dnsever_check() {
check=""
for n in $matched; do
seq=$(printf "%s\n" "$response" | _egrep_o "name=\"seq_$n\" value=\".+\"" | cut -f3 -d= | tr -d \")
old_txt=$(printf "%s\n" "$response" | _egrep_o "name=\"old_txt_$n\" value=\".+\" " | cut -f3 -d= | tr -d "\" ")
old_txt=$(printf "%s\n" "$response" | _egrep_o "name=\"old_txt_$n\" value=\".+\" " | cut -f3 -d= | tr -d "\" ")
if [ "$txtvalue" != "$old_txt" ]; then
_info "dnsever_check skip seq=$seq fulldomain=$fulldomain due to old_txt=$old_txt is different from txtvalue=$txtvalue skip"
continue