Merge branch 'master' into helm-repos

This commit is contained in:
Erin Call
2019-12-30 13:29:23 -08:00
committed by GitHub
4 changed files with 42 additions and 11 deletions

View File

@@ -74,7 +74,7 @@ func determineSteps(cfg Config) *func(Config) []Step {
case "delete":
return &uninstall
default:
panic("not implemented")
return &help
}
}
}
@@ -140,7 +140,9 @@ var lint = func(cfg Config) []Step {
}
var help = func(cfg Config) []Step {
help := &run.Help{}
help := &run.Help{
HelmCommand: cfg.Command,
}
return []Step{help}
}