helm template cmd - conformity of output

By changing a string from `##---` to `---` the output written to files matches the output generated to stdout.
pull/3811/head
Erik Sundell 8 years ago committed by GitHub
parent 58e4b6ac61
commit 1734a9b257
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -303,7 +303,7 @@ func writeToFile(outputDir string, name string, data string) error {
defer f.Close() 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 { if err != nil {
return err return err

Loading…
Cancel
Save