From 9a4f57b54b7eba792c09dfc1309834185101d964 Mon Sep 17 00:00:00 2001 From: Thomas Queiroz Date: Thu, 18 Jan 2024 18:14:48 -0500 Subject: [PATCH] flarectl: fix duplicate alias in zone subcommand check and certs were both aliased to "c" --- .changelog/1484.txt | 3 +++ cmd/flarectl/flarectl.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .changelog/1484.txt diff --git a/.changelog/1484.txt b/.changelog/1484.txt new file mode 100644 index 00000000000..980618dc11c --- /dev/null +++ b/.changelog/1484.txt @@ -0,0 +1,3 @@ +```release-note:bug +flarectl: alias zone certs to "ct" instead of duplicating the "c" alias +``` diff --git a/cmd/flarectl/flarectl.go b/cmd/flarectl/flarectl.go index 9afbd15f608..5cec7e39632 100644 --- a/cmd/flarectl/flarectl.go +++ b/cmd/flarectl/flarectl.go @@ -225,7 +225,7 @@ func main() { }, { Name: "certs", - Aliases: []string{"c"}, + Aliases: []string{"ct"}, Action: zoneCerts, Usage: "Custom SSL certificates for a zone", },