fix: rename host flag alias from h to ht

BREAKING CHANGE: The alias `h` for the `host` flag was in conflict with the default help alias and was renamed to `ht`.
This commit is contained in:
Robert Kaussow 2023-12-04 09:51:42 +01:00
parent 930e1aac89
commit 7d61d26800
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ func main() {
},
{
Name: "host",
Aliases: []string{"h"},
Aliases: []string{"ht"},
Usage: "Get hostname from url",
Action: command.Host(cfg),
},