Skip to content

Commit

Permalink
update help menu to show multi-file support
Browse files Browse the repository at this point in the history
  • Loading branch information
xchapter7x committed Nov 30, 2019
1 parent dc7f28f commit 746a438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/commands/eval.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const valuesHashName = "values"
type EvalCommand struct {
Writer io.Writer
Template string `short:"t" long:"template" description:"path to yaml template you would like to render"`
Values []string `short:"c" long:"values" description:"path to values file you would like to use for rendering"`
Values []string `short:"c" long:"values" description:"path to values file(s) you would like to use for rendering"`
Policy string `short:"p" long:"policy" description:"path to rego policies to evaluate against rendered templates"`
Namespace string `short:"n" long:"namespace" description:"policy namespace to query for rules"`
Verbose bool `short:"v" long:"verbose" description:"prints tracing output to stdout"`
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
type RenderCommand struct {
Writer io.Writer
Template string `short:"t" long:"template" description:"path to yaml template you would like to render"`
Values []string `short:"c" long:"values" description:"path to values file you would like to use for rendering"`
Values []string `short:"c" long:"values" description:"path to values file(s) you would like to use for rendering"`
}

func (s *RenderCommand) Execute(args []string) error {
Expand Down

0 comments on commit 746a438

Please sign in to comment.