diff --git a/cmd/helm/init.go b/cmd/helm/init.go index 35b5bda6c..2dfe1063a 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 74b691a34..7a02fd9ec 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