helm template cmd - conformity of output (#3811)

By changing a string from `##---` to `---` the output written to files matches the output generated to stdout.
pull/4355/head
Erik Sundell 7 years ago committed by Matt Butcher
parent f8278afcce
commit 01da56f956

@ -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

Loading…
Cancel
Save