use fmt pkg for Errorf call in pull.go

Signed-off-by: James Sheppard <jgsheppa@protonmail.com>
pull/12063/head
James Sheppard 2 years ago
parent c5b9609397
commit da85a4b50d

@ -162,7 +162,7 @@ func (p *Pull) Run(chartRef string) (string, error) {
} }
} else { } else {
return out.String(), errors.Errorf("failed to untar: a file or directory with the name %s already exists", udCheck) return out.String(), fmt.Errorf("failed to untar: a file or directory with the name %s already exists", udCheck)
} }
return out.String(), chartutil.ExpandFile(ud, saved) return out.String(), chartutil.ExpandFile(ud, saved)

Loading…
Cancel
Save