mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
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
1 changed files with 2 additions and 1 deletions
|
@ -1094,7 +1094,8 @@ (define (display-diff profile old new)
|
|||
(removed (lset-difference
|
||||
equal-entry? (list-entries old) (list-entries new))))
|
||||
(for-each (cut display-entry <> "+") added)
|
||||
(for-each (cut display-entry <> "-") removed)))
|
||||
(for-each (cut display-entry <> "-") removed)
|
||||
(newline)))
|
||||
|
||||
(display-diff profile gen1 gen2))
|
||||
|
||||
|
|
Loading…
Reference in a new issue