Browse Source

Merge pull request #5212 from allddd/dns_porkbun_grep_fix

dns_porkbun: remove stray backslashes
pull/5217/head
neil 2 months ago
committed by GitHub
parent
commit
9861e2d724
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      dnsapi/dns_porkbun.sh

2
dnsapi/dns_porkbun.sh

@ -93,7 +93,7 @@ dns_porkbun_rm() {
_err "Delete record error."
return 1
fi
echo "$response" | tr -d " " | grep '\"status\":"SUCCESS"' >/dev/null
echo "$response" | tr -d " " | grep '"status":"SUCCESS"' >/dev/null
fi
}

Loading…
Cancel
Save