From 1734a9b25702c68a4a9ad901df1acf7c96fd2efd Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Tue, 3 Apr 2018 09:42:34 +0200 Subject: [PATCH] helm template cmd - conformity of output By changing a string from `##---` to `---` the output written to files matches the output generated to stdout. --- cmd/helm/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/template.go b/cmd/helm/template.go index c04bc2dc8..9ee5b0f0b 100644 --- a/cmd/helm/template.go +++ b/cmd/helm/template.go @@ -303,7 +303,7 @@ func writeToFile(outputDir string, name string, data string) error { defer f.Close() - _, err = f.WriteString(fmt.Sprintf("##---\n# Source: %s\n%s", name, data)) + _, err = f.WriteString(fmt.Sprintf("---\n# Source: %s\n%s", name, data)) if err != nil { return err