From e4352e8b59de780ae6e358cd85c32f005a855a30 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 10 Dec 2024 17:22:20 +0100 Subject: [PATCH] fix: Correct flag marking for verbose flag in deploy command --- cmd/bundle/deploy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bundle/deploy.go b/cmd/bundle/deploy.go index 0ded1b5b5..ac0e7c67a 100644 --- a/cmd/bundle/deploy.go +++ b/cmd/bundle/deploy.go @@ -36,7 +36,7 @@ func newDeployCommand() *cobra.Command { _ = cmd.Flags().MarkDeprecated("compute-id", "use --cluster-id instead") cmd.Flags().BoolVar(&verbose, "verbose", false, "Enable verbose output.") // Verbose flag currently only affects file sync output, it's used by the vscode extension - _ = cmd.Flags().MarkHidden("verbose") + cmd.Flags().MarkHidden("verbose") cmd.RunE = func(cmd *cobra.Command, args []string) error { ctx := cmd.Context()