Merge pull request #5212 from allddd/dns_porkbun_grep_fix

dns_porkbun: remove stray backslashes
This commit is contained in:
neil 2024-07-19 10:33:49 +08:00 committed by GitHub
commit 9861e2d724
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
}