From 26268b42c75a3c6c9b3a116e882fe577dabe5a0f Mon Sep 17 00:00:00 2001 From: prankur-sh Date: Wed, 2 Sep 2026 12:19:19 +0530 Subject: [PATCH] fix: quote the command in brev exec usage string --- pkg/cmd/exec/exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/exec/exec.go b/pkg/cmd/exec/exec.go index e7f0cd924..86000d11d 100644 --- a/pkg/cmd/exec/exec.go +++ b/pkg/cmd/exec/exec.go @@ -58,7 +58,7 @@ func NewCmdExec(t *terminal.Terminal, store ExecStore, noLoginStartStore ExecSto var host bool cmd := &cobra.Command{ Annotations: map[string]string{"access": ""}, - Use: "exec [instance...] ", + Use: `exec [instance...] ""`, DisableFlagsInUseLine: true, Short: "Execute a command on instance(s)", Long: execLong,