Skip to content

Commit

Permalink
fix: show help
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <[email protected]>
  • Loading branch information
vsukhin committed Oct 17, 2024
1 parent 569a11e commit a67c66d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/kubectl-testkube/commands/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"github.com/spf13/cobra"

"github.com/kubeshop/testkube/cmd/kubectl-testkube/commands/docker"
"github.com/kubeshop/testkube/pkg/ui"
)

func NewDockerCmd() *cobra.Command {
Expand All @@ -12,6 +13,8 @@ func NewDockerCmd() *cobra.Command {
Use: "docker",
Short: "Testkube Docker commands",
Run: func(cmd *cobra.Command, args []string) {
err := cmd.Help()
ui.PrintOnError("Displaying help", err)
},
}

Expand Down

0 comments on commit a67c66d

Please sign in to comment.