Merge pull request #4809 from mortent/FixOutputWhitespace

fix(helm): Use line breaks consistently in status output
pull/4900/head
Matt Farina 6 years ago committed by GitHub
commit e91e961587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -212,8 +212,13 @@ func (c *Client) Get(namespace string, reader io.Reader) (string, error) {
// track of tab widths.
buf := new(bytes.Buffer)
p, _ := get.NewHumanPrintFlags().ToPrinter("")
index := 0
for t, ot := range objs {
if _, err = buf.WriteString("==> " + t + "\n"); err != nil {
kindHeader := fmt.Sprintf("==> %s", t)
if index == 0 {
kindHeader = kindHeader + "\n"
}
if _, err = buf.WriteString(kindHeader); err != nil {
return "", err
}
for _, o := range ot {
@ -225,6 +230,7 @@ func (c *Client) Get(namespace string, reader io.Reader) (string, error) {
if _, err := buf.WriteString("\n"); err != nil {
return "", err
}
index += 1
}
if len(missing) > 0 {
buf.WriteString(MissingGetHeader)

Loading…
Cancel
Save