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 0073baa Kamel local inspect: In case of missing format, show the
output in the same form of the other output
0073baa is described below
commit 0073baaed5f010071a09e138cc8fb7afeaf03d4e
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri Mar 12 11:07:24 2021 +0100
Kamel local inspect: In case of missing format, show the output in the same
form of the other output
---
pkg/cmd/util_dependencies.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/pkg/cmd/util_dependencies.go b/pkg/cmd/util_dependencies.go
index f89a6a4..2dc6475 100644
--- a/pkg/cmd/util_dependencies.go
+++ b/pkg/cmd/util_dependencies.go
@@ -262,6 +262,7 @@ func outputDependencies(dependencies []string, format
string) error {
}
} else {
// Print output in text form
+ fmt.Println("dependencies:")
for _, dep := range dependencies {
fmt.Printf("%v\n", dep)
}