fix(helm): add missing line ending on list output

pull/1613/head
Adam Reese 8 years ago
parent 190dafbc8e
commit 6050a4bcfe

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

Loading…
Cancel
Save