Browse Source
Merge pull request #5212 from allddd/dns_porkbun_grep_fix
dns_porkbun: remove stray backslashes
pull/5217/head
neil
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
dnsapi/dns_porkbun.sh
|
@ -93,7 +93,7 @@ dns_porkbun_rm() { |
|
|
_err "Delete record error." |
|
|
_err "Delete record error." |
|
|
return 1 |
|
|
return 1 |
|
|
fi |
|
|
fi |
|
|
echo "$response" | tr -d " " | grep '\"status\":"SUCCESS"' >/dev/null |
|
|
|
|
|
|
|
|
echo "$response" | tr -d " " | grep '"status":"SUCCESS"' >/dev/null |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|