From 844e575d2a7090903c26e658037e3298ecff9479 Mon Sep 17 00:00:00 2001 From: Simon Shine Date: Fri, 17 Jul 2020 06:33:27 +0200 Subject: [PATCH] Alter whitespace in "Update Complete" output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Most places say "Happy Helming!". But pkg/downloader/manager.go also says "⎈Happy Helming!⎈" Signed-off-by: Simon Shine --- cmd/helm/repo_update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/repo_update.go b/cmd/helm/repo_update.go index 5c1086e81..cbfc05b00 100644 --- a/cmd/helm/repo_update.go +++ b/cmd/helm/repo_update.go @@ -96,5 +96,5 @@ func updateCharts(repos []*repo.ChartRepository, out io.Writer) { }(re) } wg.Wait() - fmt.Fprintln(out, "Update Complete. ⎈ Happy Helming!⎈ ") + fmt.Fprintln(out, "Update Complete. ⎈Happy Helming!⎈") }