Skip to content

Commit

Permalink
Merge pull request #5212 from allddd/dns_porkbun_grep_fix
Browse files Browse the repository at this point in the history
dns_porkbun: remove stray backslashes
  • Loading branch information
Neilpang authored Jul 19, 2024
2 parents 93d2c9a + 7ae0d0c commit 9861e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnsapi/dns_porkbun.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

}
Expand Down

0 comments on commit 9861e2d

Please sign in to comment.