From 926520e03a15e845ead668031c24277257226364 Mon Sep 17 00:00:00 2001 From: zwwhdls Date: Sun, 15 Dec 2019 16:39:51 +0800 Subject: [PATCH] fix go style Signed-off-by: zwwhdls --- pkg/action/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/action/install.go b/pkg/action/install.go index a6b1a12da..546c91434 100644 --- a/pkg/action/install.go +++ b/pkg/action/install.go @@ -222,7 +222,7 @@ func (i *Install) Run(chrt *chart.Chart, vals map[string]interface{}) (*release. if chrt.Values == nil && reflect.DeepEqual(vals, map[string]interface{}{}) { rel.SetStatus(release.StatusFailed, fmt.Sprint("failed to render resource: lack of values.yaml")) // Return a release with partial data so that the client can show debugging information. - return rel, errors.Wrap(err,"failed to render resource: lack of values.yaml") + return rel, errors.Wrap(err, "failed to render resource: lack of values.yaml") } rel.SetStatus(release.StatusFailed, fmt.Sprintf("failed to render resource: %s", err.Error())) // Return a release with partial data so that the client can show debugging information.