From b244e20f053c17e66d78892d56233aacb17c9aad Mon Sep 17 00:00:00 2001 From: ankitm123 Date: Sat, 29 Aug 2020 07:32:28 -0400 Subject: [PATCH] fix: remove print statement when writing data to an output directory Signed-off-by: ankitm123 --- cmd/helm/template.go | 1 - pkg/action/install.go | 2 -- 2 files changed, 3 deletions(-) diff --git a/cmd/helm/template.go b/cmd/helm/template.go index 6123d29d4..e311395c3 100644 --- a/cmd/helm/template.go +++ b/cmd/helm/template.go @@ -197,7 +197,6 @@ func writeToFile(outputDir string, name string, data string, append bool) error return err } - fmt.Printf("wrote %s\n", outfileName) return nil } diff --git a/pkg/action/install.go b/pkg/action/install.go index 00fb208b0..abc2ca0a1 100644 --- a/pkg/action/install.go +++ b/pkg/action/install.go @@ -500,8 +500,6 @@ func writeToFile(outputDir string, name string, data string, append bool) error if err != nil { return err } - - fmt.Printf("wrote %s\n", outfileName) return nil }