This is an automated email from the ASF dual-hosted git repository.
astefanutti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 22a491e Fix typo
22a491e is described below
commit 22a491eb59de45931642cd5a3f4a8cd43a0cdd96
Author: Aurélien Pupier <[email protected]>
AuthorDate: Fri Apr 30 14:31:04 2021 +0200
Fix typo
---
pkg/cmd/get.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/cmd/get.go b/pkg/cmd/get.go
index bf0f130..8d963ed 100644
--- a/pkg/cmd/get.go
+++ b/pkg/cmd/get.go
@@ -41,7 +41,7 @@ func newCmdGet(rootCmdOptions *RootCmdOptions)
(*cobra.Command, *getCmdOptions)
cmd := cobra.Command{
Use: "get [integration]",
Short: "Get integrations deployed on Kubernetes",
- Long: `Get the status of integrations deployed on on
Kubernetes.`,
+ Long: `Get the status of integrations deployed on
Kubernetes.`,
PreRunE: decode(&options),
RunE: options.run,
}