This is an automated email from the ASF dual-hosted git repository. astefanutti 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 c60c612 fix: Rename kamel get 'context' column to 'kit' c60c612 is described below commit c60c6120abab155a31a2563507eb3dcf447fd9dd Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Fri Sep 27 12:09:21 2019 +0100 fix: Rename kamel get 'context' column to 'kit' fixes #941 --- 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 6cfbd7b..9560c7f 100644 --- a/pkg/cmd/get.go +++ b/pkg/cmd/get.go @@ -75,7 +75,7 @@ func (o *getCmdOptions) run(_ *cobra.Command, args []string) error { } w := tabwriter.NewWriter(os.Stdout, 0, 8, 1, '\t', 0) - fmt.Fprintln(w, "NAME\tPHASE\tCONTEXT") + fmt.Fprintln(w, "NAME\tPHASE\tKIT") for _, integration := range integrationList.Items { fmt.Fprintf(w, "%s\t%s\t%s\n", integration.Name, string(integration.Status.Phase), integration.Status.Kit) }