From 34b288576ccda279e4591acf362dbf60141beef7 Mon Sep 17 00:00:00 2001 From: Alexander BC Date: Sat, 9 Nov 2024 21:53:11 +0100 Subject: [PATCH] fix: correct help of dns delete records command --- porkbun-linux-cli | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/porkbun-linux-cli b/porkbun-linux-cli index 6e355ab..cc409bd 100755 --- a/porkbun-linux-cli +++ b/porkbun-linux-cli @@ -803,12 +803,11 @@ function dns_delete_records_help { echo echo "Options:" echo " $PARAM_DOMAIN_SHORT, $PARAM_DOMAIN" - echo " The domain for the record being created." + echo " The domain of the record being deleted." echo " $PARAM_TYPE_SHORT, $PARAM_TYPE" - echo " The type of record being created. Valid types are: A, MX, CNAME, ALIAS, TXT, NS, AAAA, SRV, TLSA, CAA" + echo " The type of record being deleted. Valid types are: A, MX, CNAME, ALIAS, TXT, NS, AAAA, SRV, TLSA, CAA" echo " $PARAM_NAME_SHORT, $PARAM_NAME (optional)" - echo " The subdomain for the record being created, not including the domain itself. Leave blank to create a record on the root domain. Use * to create a wildcard record." - echo " $PARAM_CONTENT_SHORT, $PARAM_CONTENT" + echo " The subdomain of the record being deleted." } HANDLE_DNS_LIST="list"