Commit 054613c0 authored by Matt Butcher's avatar Matt Butcher Committed by GitHub

Merge pull request #1434 from technosophos/fix/1430-missing-linefeed

fix(helm): add line feed between --values and --set data
parents ebeaaf75 973ed170
......@@ -207,6 +207,10 @@ func (i *installCmd) vals() ([]byte, error) {
return []byte{}, err
}
buffer.Write(bytes)
// Force a new line. An extra won't matter, but a missing one can
// break things. https://github.com/kubernetes/helm/issues/1430
buffer.WriteRune('\n')
}
// User specified value pairs via --set
......
Markdown is supported
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