fix(helm): clarify that the Chart destination is still needed for

subcommands
pull/1433/head
Jim 8 years ago
parent 6eb0cbb77f
commit 6e72351451

@ -85,7 +85,7 @@ func newInspectCmd(c helm.Interface, out io.Writer) *cobra.Command {
} }
valuesSubCmd := &cobra.Command{ valuesSubCmd := &cobra.Command{
Use: "values", Use: "values [CHART]",
Short: "shows inspect values", Short: "shows inspect values",
Long: inspectValuesDesc, Long: inspectValuesDesc,
RunE: func(cmd *cobra.Command, args []string) error { 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{ chartSubCmd := &cobra.Command{
Use: "chart", Use: "chart [CHART]",
Short: "shows inspect chart", Short: "shows inspect chart",
Long: inspectChartDesc, Long: inspectChartDesc,
RunE: func(cmd *cobra.Command, args []string) error { RunE: func(cmd *cobra.Command, args []string) error {

Loading…
Cancel
Save