Commit 01da56f9 authored by Erik Sundell's avatar Erik Sundell Committed by Matt Butcher
Browse files

helm template cmd - conformity of output (#3811)

By changing a string from `##---` to `---` the output written to files matches the output generated to stdout.
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment