From 01da56f956329bbfcef14ac164f9ab49081ad108 Mon Sep 17 00:00:00 2001
From: Erik Sundell <erik.i.sundell@gmail.com>
Date: Wed, 18 Jul 2018 16:01:11 -0400
Subject: [PATCH] helm template cmd - conformity of output (#3811)

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 7e3eb48a7..9ba217871 100644
--- a/cmd/helm/template.go
+++ b/cmd/helm/template.go
@@ -309,7 +309,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
-- 
GitLab