Skip to content

Commit 524adda

Browse files
authored
enforce exact argument count for cmds (goharbor#302)
* enforce exact argument count for cmds Signed-off-by: Rizul Gupta <[email protected]> * fix: enforce exact argument count for create project command Signed-off-by: Rizul Gupta <[email protected]> * revert change for project create cmd Signed-off-by: Rizul Gupta <[email protected]> * lint error fix Signed-off-by: Rizul Gupta <[email protected]> --------- Signed-off-by: Rizul Gupta <[email protected]>
1 parent db9d24e commit 524adda

File tree

7 files changed

+7
-4
lines changed

7 files changed

+7
-4
lines changed

cmd/harbor/root/labels/create.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func CreateLabelCommand() *cobra.Command {
2828
Short: "create label",
2929
Long: "create label in harbor",
3030
Example: "harbor label create",
31-
Args: cobra.NoArgs,
31+
Args: cobra.ExactArgs(0),
3232
Run: func(cmd *cobra.Command, args []string) {
3333
var err error
3434
createView := &create.CreateView{

cmd/harbor/root/labels/list.go

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ func ListLabelCommand() *cobra.Command {
2828
cmd := &cobra.Command{
2929
Use: "list",
3030
Short: "list labels",
31+
Args: cobra.ExactArgs(0),
3132
Run: func(cmd *cobra.Command, args []string) {
3233
label, err := api.ListLabel(opts)
3334
if err != nil {

cmd/harbor/root/project/list.go

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ func ListProjectCommand() *cobra.Command {
3232
cmd := &cobra.Command{
3333
Use: "list",
3434
Short: "list project",
35+
Args: cobra.ExactArgs(0),
3536
Run: func(cmd *cobra.Command, args []string) {
3637
if private && public {
3738
log.Fatal("Cannot specify both --private and --public flags")

cmd/harbor/root/registry/create.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func CreateRegistryCommand() *cobra.Command {
2727
Use: "create",
2828
Short: "create registry",
2929
Example: "harbor registry create",
30-
Args: cobra.NoArgs,
30+
Args: cobra.ExactArgs(0),
3131
Run: func(cmd *cobra.Command, args []string) {
3232
var err error
3333
createView := &api.CreateRegView{

cmd/harbor/root/registry/list.go

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ func ListRegistryCommand() *cobra.Command {
2929
cmd := &cobra.Command{
3030
Use: "list",
3131
Short: "list registry",
32+
Args: cobra.ExactArgs(0),
3233
Run: func(cmd *cobra.Command, args []string) {
3334
registry, err := api.ListRegistries(opts)
3435

cmd/harbor/root/user/create.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func UserCreateCmd() *cobra.Command {
2727
cmd := &cobra.Command{
2828
Use: "create",
2929
Short: "create user",
30-
Args: cobra.NoArgs,
30+
Args: cobra.ExactArgs(0),
3131
Run: func(cmd *cobra.Command, args []string) {
3232
var err error
3333
createView := &create.CreateView{

cmd/harbor/root/user/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func UserListCmd() *cobra.Command {
2828
cmd := &cobra.Command{
2929
Use: "list",
3030
Short: "list users",
31-
Args: cobra.NoArgs,
31+
Args: cobra.ExactArgs(0),
3232
Aliases: []string{"ls"},
3333
Run: func(cmd *cobra.Command, args []string) {
3434
response, err := api.ListUsers(opts)

0 commit comments

Comments
 (0)