guix package: Display newline after generation diffs.
* guix/ui.scm (display-profile-content-diff): Display an extra newline.
This commit is contained in:
parent
1f9803c2a4
commit
88bdbb2a0f
|
@ -1094,7 +1094,8 @@ DURATION-RELATION with the current time."
|
||||||
(removed (lset-difference
|
(removed (lset-difference
|
||||||
equal-entry? (list-entries old) (list-entries new))))
|
equal-entry? (list-entries old) (list-entries new))))
|
||||||
(for-each (cut display-entry <> "+") added)
|
(for-each (cut display-entry <> "+") added)
|
||||||
(for-each (cut display-entry <> "-") removed)))
|
(for-each (cut display-entry <> "-") removed)
|
||||||
|
(newline)))
|
||||||
|
|
||||||
(display-diff profile gen1 gen2))
|
(display-diff profile gen1 gen2))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue