Skip to content

Commit

Permalink
Fix incorrect help text of some CLI options. (#1587)
Browse files Browse the repository at this point in the history
  • Loading branch information
wi1dcard committed Nov 18, 2020
1 parent f877de7 commit b0e0429
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions main.go
Expand Up @@ -54,7 +54,7 @@ func main() {
},
cli.StringFlag{
Name: "environment, e",
Usage: "specify the environment name. defaults to `default`",
Usage: `specify the environment name. defaults to "default"`,
},
cli.StringSliceFlag{
Name: "state-values-set",
Expand Down Expand Up @@ -109,7 +109,7 @@ func main() {
cliApp.Commands = []cli.Command{
{
Name: "deps",
Usage: "update charts based on the contents of requirements.yaml",
Usage: "update charts based on their requirements",
Flags: []cli.Flag{
cli.StringFlag{
Name: "args",
Expand All @@ -118,7 +118,7 @@ func main() {
},
cli.BoolFlag{
Name: "skip-repos",
Usage: "skip running `helm repo update` before running `helm dependency build`",
Usage: `skip running "helm repo update" before running "helm dependency build"`,
},
},
Action: action(func(run *app.App, c configImpl) error {
Expand Down Expand Up @@ -185,7 +185,7 @@ func main() {
},
cli.BoolFlag{
Name: "skip-deps",
Usage: "skip running `helm repo update` and `helm dependency build`",
Usage: `skip running "helm repo update" and "helm dependency build"`,
},
cli.BoolFlag{
Name: "detailed-exitcode",
Expand Down Expand Up @@ -254,7 +254,7 @@ func main() {
},
cli.BoolFlag{
Name: "skip-deps",
Usage: "skip running `helm repo update` and `helm dependency build`",
Usage: `skip running "helm repo update" and "helm dependency build"`,
},
cli.BoolFlag{
Name: "skip-cleanup",
Expand Down Expand Up @@ -288,7 +288,7 @@ func main() {
},
cli.BoolFlag{
Name: "skip-deps",
Usage: "skip running `helm repo update` and `helm dependency build`",
Usage: `skip running "helm repo update" and "helm dependency build"`,
},
},
Action: action(func(run *app.App, c configImpl) error {
Expand Down Expand Up @@ -319,7 +319,7 @@ func main() {
},
cli.BoolFlag{
Name: "skip-deps",
Usage: "skip running `helm repo update` and `helm dependency build`",
Usage: `skip running "helm repo update" and "helm dependency build"`,
},
},
Action: action(func(run *app.App, c configImpl) error {
Expand Down Expand Up @@ -350,7 +350,7 @@ func main() {
},
cli.BoolFlag{
Name: "skip-deps",
Usage: "skip running `helm repo update` and `helm dependency build`",
Usage: `skip running "helm repo update" and "helm dependency build"`,
},
},
Action: action(func(run *app.App, c configImpl) error {
Expand Down Expand Up @@ -410,7 +410,7 @@ func main() {
},
cli.BoolFlag{
Name: "skip-deps",
Usage: "skip running `helm repo update` and `helm dependency build`",
Usage: `skip running "helm repo update" and "helm dependency build"`,
},
},
Action: action(func(run *app.App, c configImpl) error {
Expand Down

0 comments on commit b0e0429

Please sign in to comment.