listremotes: remove -l short flag as it conflicts with the new global flag

This commit is contained in:
weetmuts 2019-02-02 20:44:26 +01:00 committed by Nick Craig-Wood
parent 96f6708461
commit 3aa1818870

View File

@ -16,7 +16,7 @@ var (
func init() {
cmd.Root.AddCommand(commandDefintion)
commandDefintion.Flags().BoolVarP(&listLong, "long", "l", listLong, "Show the type as well as names.")
commandDefintion.Flags().BoolVarP(&listLong, "long", "", listLong, "Show the type as well as names.")
}
var commandDefintion = &cobra.Command{