diff --git a/cmd/helm/init.go b/cmd/helm/init.go index f75402a06..7b672730f 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -221,7 +221,7 @@ func (i *initCmd) run() error { } return nil default: - return fmt.Errorf("Unknown output format: %s", i.opts.Output) + return fmt.Errorf("unknown output format: %s", i.opts.Output) } } if settings.Debug { diff --git a/cmd/helm/installer/install.go b/cmd/helm/installer/install.go index 43822ef36..b1f9a6080 100644 --- a/cmd/helm/installer/install.go +++ b/cmd/helm/installer/install.go @@ -136,7 +136,7 @@ func parseNodeSelectorsInto(labels string, m map[string]string) error { if len(el) == 2 { m[el[0]] = el[1] } else { - return fmt.Errorf("Invalid nodeSelector label: %s", kv) + return fmt.Errorf("invalid nodeSelector label: %s", kv) } } return nil