[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: guix package: Display newline after generation diffs.
From: |
Roel Janssen |
Subject: |
01/01: guix package: Display newline after generation diffs. |
Date: |
Thu, 17 Nov 2016 22:48:44 +0000 (UTC) |
roelj pushed a commit to branch master
in repository guix.
commit 88bdbb2a0fd04e1fe5d390caf40697344d5de5b7
Author: Roel Janssen <address@hidden>
Date: Thu Nov 17 23:49:29 2016 +0100
guix package: Display newline after generation diffs.
* guix/ui.scm (display-profile-content-diff): Display an extra newline.
---
guix/ui.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix/ui.scm b/guix/ui.scm
index b9fbbfd..cafb3c6 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -1094,7 +1094,8 @@ DURATION-RELATION with the current time."
(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))