From 6e723514516c800aef972cf20af3e4c2a0b46df9 Mon Sep 17 00:00:00 2001 From: Jim Date: Fri, 21 Oct 2016 14:16:08 -0400 Subject: [PATCH] fix(helm): clarify that the Chart destination is still needed for subcommands --- cmd/helm/inspect.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/inspect.go b/cmd/helm/inspect.go index 7097269f9..46e47d808 100644 --- a/cmd/helm/inspect.go +++ b/cmd/helm/inspect.go @@ -85,7 +85,7 @@ func newInspectCmd(c helm.Interface, out io.Writer) *cobra.Command { } valuesSubCmd := &cobra.Command{ - Use: "values", + Use: "values [CHART]", Short: "shows inspect values", Long: inspectValuesDesc, RunE: func(cmd *cobra.Command, args []string) error { @@ -103,7 +103,7 @@ func newInspectCmd(c helm.Interface, out io.Writer) *cobra.Command { } chartSubCmd := &cobra.Command{ - Use: "chart", + Use: "chart [CHART]", Short: "shows inspect chart", Long: inspectChartDesc, RunE: func(cmd *cobra.Command, args []string) error {