File tree 7 files changed +7
-4
lines changed
7 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ func CreateLabelCommand() *cobra.Command {
28
28
Short : "create label" ,
29
29
Long : "create label in harbor" ,
30
30
Example : "harbor label create" ,
31
- Args : cobra .NoArgs ,
31
+ Args : cobra .ExactArgs ( 0 ) ,
32
32
Run : func (cmd * cobra.Command , args []string ) {
33
33
var err error
34
34
createView := & create.CreateView {
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ func ListLabelCommand() *cobra.Command {
28
28
cmd := & cobra.Command {
29
29
Use : "list" ,
30
30
Short : "list labels" ,
31
+ Args : cobra .ExactArgs (0 ),
31
32
Run : func (cmd * cobra.Command , args []string ) {
32
33
label , err := api .ListLabel (opts )
33
34
if err != nil {
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ func ListProjectCommand() *cobra.Command {
32
32
cmd := & cobra.Command {
33
33
Use : "list" ,
34
34
Short : "list project" ,
35
+ Args : cobra .ExactArgs (0 ),
35
36
Run : func (cmd * cobra.Command , args []string ) {
36
37
if private && public {
37
38
log .Fatal ("Cannot specify both --private and --public flags" )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ func CreateRegistryCommand() *cobra.Command {
27
27
Use : "create" ,
28
28
Short : "create registry" ,
29
29
Example : "harbor registry create" ,
30
- Args : cobra .NoArgs ,
30
+ Args : cobra .ExactArgs ( 0 ) ,
31
31
Run : func (cmd * cobra.Command , args []string ) {
32
32
var err error
33
33
createView := & api.CreateRegView {
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ func ListRegistryCommand() *cobra.Command {
29
29
cmd := & cobra.Command {
30
30
Use : "list" ,
31
31
Short : "list registry" ,
32
+ Args : cobra .ExactArgs (0 ),
32
33
Run : func (cmd * cobra.Command , args []string ) {
33
34
registry , err := api .ListRegistries (opts )
34
35
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ func UserCreateCmd() *cobra.Command {
27
27
cmd := & cobra.Command {
28
28
Use : "create" ,
29
29
Short : "create user" ,
30
- Args : cobra .NoArgs ,
30
+ Args : cobra .ExactArgs ( 0 ) ,
31
31
Run : func (cmd * cobra.Command , args []string ) {
32
32
var err error
33
33
createView := & create.CreateView {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ func UserListCmd() *cobra.Command {
28
28
cmd := & cobra.Command {
29
29
Use : "list" ,
30
30
Short : "list users" ,
31
- Args : cobra .NoArgs ,
31
+ Args : cobra .ExactArgs ( 0 ) ,
32
32
Aliases : []string {"ls" },
33
33
Run : func (cmd * cobra.Command , args []string ) {
34
34
response , err := api .ListUsers (opts )
You can’t perform that action at this time.
0 commit comments