Merge pull request #95 from docker/forece-shorthand

Add shorthand -f for all --force
This commit is contained in:
Silvin Lubecki 2020-10-26 17:06:31 +01:00 коммит произвёл GitHub
Родитель 36e5059314 ec4a70d955
Коммит a33ee42f78
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -53,7 +53,7 @@ func newRmCmd(streams command.Streams, hubClient *hub.Client, parent string) *co
return runRm(streams, hubClient, opts, args[0])
},
}
cmd.Flags().BoolVar(&opts.force, "force", false, "Force deletion of the repository")
cmd.Flags().BoolVarP(&opts.force, "force", "f", false, "Force deletion of the repository")
return cmd
}

Просмотреть файл

@ -53,7 +53,7 @@ func newRmCmd(streams command.Streams, hubClient *hub.Client, parent string) *co
return runRm(streams, hubClient, opts, args[0])
},
}
cmd.Flags().BoolVar(&opts.force, "force", false, "Force deletion of the tag")
cmd.Flags().BoolVarP(&opts.force, "force", "f", false, "Force deletion of the tag")
return cmd
}

Просмотреть файл

@ -53,7 +53,7 @@ func newRevokeCmd(streams command.Streams, hubClient *hub.Client, parent string)
return runRevoke(streams, hubClient, opts, args[0])
},
}
cmd.Flags().BoolVar(&opts.force, "force", false, "Force deletion of the tag")
cmd.Flags().BoolVarP(&opts.force, "force", "f", false, "Force deletion of the tag")
return cmd
}