1
mirror of https://github.com/rclone/rclone synced 2025-01-12 15:46:25 +01:00

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() { func init() {
cmd.Root.AddCommand(commandDefintion) 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{ var commandDefintion = &cobra.Command{