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/4207/head^2
Erik Sundell 7 years ago committed by Sebastien Plisson
parent 9c0d3fcb79
commit d6157d10a7

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