diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 497565209..86d7696fb 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -214,7 +214,7 @@ func prettyError(err error) error { } // If it's grpc's error, make it more user-friendly. if s, ok := status.FromError(err); ok { - return s.Err() + return fmt.Errorf(s.Message()) } // Else return the original error. return err