Skip to content

Commit

Permalink
flarectl: fix duplicate alias in zone subcommand
Browse files Browse the repository at this point in the history
check and certs were both aliased to "c"
  • Loading branch information
thomasqueirozb committed Jan 18, 2024
1 parent c3ac69e commit 9a4f57b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/1484.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
flarectl: alias zone certs to "ct" instead of duplicating the "c" alias
```
2 changes: 1 addition & 1 deletion cmd/flarectl/flarectl.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func main() {
},
{
Name: "certs",
Aliases: []string{"c"},
Aliases: []string{"ct"},
Action: zoneCerts,
Usage: "Custom SSL certificates for a zone",
},
Expand Down

0 comments on commit 9a4f57b

Please sign in to comment.