This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/master by this push:
new e4adcb6 Fixes incomplete help message
new a941537 Merge pull request #1596 from orpiske/gh-issue-1585
e4adcb6 is described below
commit e4adcb6215c4f6059f819a69930e3f62f2fbe6a8
Author: Otavio R. Piske <[email protected]>
AuthorDate: Wed Jul 8 22:05:10 2020 +0200
Fixes incomplete help message
---
pkg/cmd/init.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/cmd/init.go b/pkg/cmd/init.go
index cd50fe6..c347a73 100644
--- a/pkg/cmd/init.go
+++ b/pkg/cmd/init.go
@@ -34,7 +34,7 @@ func newCmdInit(rootCmdOptions *RootCmdOptions)
(*cobra.Command, *initCmdOptions
RootCmdOptions: rootCmdOptions,
}
cmd := cobra.Command{
- Use: "init",
+ Use: "init [flags] IntegrationFile.java",
Short: "Initialize empty Camel K files",
Long: `Initialize empty Camel K integrations and other
resources.`,
PreRunE: decode(&options),