From d5bf6efebcddac00edbce5d66fbdf793c78bb3fd Mon Sep 17 00:00:00 2001 From: vaikas-google Date: Wed, 4 May 2016 16:35:47 -0700 Subject: [PATCH] fix typo and return error --- cmd/helm/fetch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/fetch.go b/cmd/helm/fetch.go index aa47871b2..ca962ffb8 100644 --- a/cmd/helm/fetch.go +++ b/cmd/helm/fetch.go @@ -90,9 +90,9 @@ func untarChart(r io.Reader) error { return err } if c == nil { - fmt.Errorf("Failed to untar the chart") + return fmt.Errorf("Failed to untar the chart") } - return fmt.Errorf("Not implemented yeet") + return fmt.Errorf("Not implemented yee") }