From 4e5ff344dadf7fcb211fb2779a1b80f210cbc00f Mon Sep 17 00:00:00 2001 From: Amim Knabben Date: Thu, 10 Jan 2019 14:57:00 -0200 Subject: [PATCH] Printing string to out Signed-off-by: Amim Knabben --- cmd/helm/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/status.go b/cmd/helm/status.go index f3f156652..880e72ad4 100644 --- a/cmd/helm/status.go +++ b/cmd/helm/status.go @@ -145,7 +145,7 @@ func PrintStatus(out io.Writer, res *services.GetReleaseStatusResponse) { } if res.Chart.Metadata.Deprecated { - fmt.Printf("WARNING: This chart has been deprecated.\n") + fmt.Fprintf(out, "WARNING: This chart has been deprecated.\n") } }