fix: rename host flag alias from h to ht (#80)

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:55:56 +01:00 committed by GitHub
parent 930e1aac89
commit 872985ac58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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),
},