Summary
In pkg/cmd/cmd.go, hidden @manpages command defines two bool flags with the same alias -z:
--gzip, alias -z
--text, alias -z
Why this is a bug
Alias collision is ambiguous and can lead to incorrect flag parsing/behavior when using short flags.
Suggested fix
Give --text a different alias (or no alias), leaving -z only for --gzip.
Summary
In
pkg/cmd/cmd.go, hidden@manpagescommand defines two bool flags with the same alias-z:--gzip, alias-z--text, alias-zWhy this is a bug
Alias collision is ambiguous and can lead to incorrect flag parsing/behavior when using short flags.
Suggested fix
Give
--texta different alias (or no alias), leaving-zonly for--gzip.