Merge pull request #1613 from adamreese/fix/1612-list-output-formatting

fix(helm): add missing line ending on list output
pull/1621/head
Adam Reese 8 years ago committed by GitHub
commit 69a95f32ed

@ -142,8 +142,8 @@ func (l *listCmd) run() error {
return nil
}
if res.Next != "" {
fmt.Fprintf(l.out, "\tnext: %s", res.Next)
if res.Next != "" && !l.short {
fmt.Fprintf(l.out, "\tnext: %s\n", res.Next)
}
rels := res.Releases

Loading…
Cancel
Save