From 2bdea5ae14f54e86c9f9438463c9da9fff5c69e5 Mon Sep 17 00:00:00 2001 From: zwwhdls Date: Sun, 8 Dec 2019 14:32:28 +0800 Subject: [PATCH] update error message Signed-off-by: zwwhdls --- pkg/action/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/action/pull.go b/pkg/action/pull.go index 70aec38df..fb8da612f 100644 --- a/pkg/action/pull.go +++ b/pkg/action/pull.go @@ -115,7 +115,7 @@ func (p *Pull) Run(chartRef string) (string, error) { } } else { - return out.String(), errors.Errorf("failed to untar: %s already exited", ud) + return out.String(), errors.Errorf("failed to untar: a file or directory with the name %s already exists", ud) } return out.String(), chartutil.ExpandFile(ud, saved)