This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 0e13fc0a9472317908fd612fce347724f8b54dc6 Author: Pranjul Kalsi <[email protected]> AuthorDate: Sun Dec 14 15:38:11 2025 +0530 fix(cmd): remove flag reference from deploy command description --- pkg/cmd/deploy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/deploy.go b/pkg/cmd/deploy.go index 8249110cf..51f04f385 100644 --- a/pkg/cmd/deploy.go +++ b/pkg/cmd/deploy.go @@ -33,7 +33,7 @@ func newCmdDeploy(rootCmdOptions *RootCmdOptions) (*cobra.Command, *deployCmdOpt } cmd := cobra.Command{ Use: "deploy <name>", - Short: "Deploy an Integration or Pipe that was previously built with --dont-run-after-build flag", + Short: "Deploy an Integration or Pipe that was previously built", PreRunE: decode(&options, options.Flags), RunE: options.run, }
