[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: describe: Canonicalize the profile.
From: |
Ludovic Courtès |
Subject: |
01/03: describe: Canonicalize the profile. |
Date: |
Sun, 14 Oct 2018 17:49:11 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit e0caff9ed0c2238eafba63a65f01d96eeaf02fab
Author: Ludovic Courtès <address@hidden>
Date: Sun Oct 14 21:25:46 2018 +0200
describe: Canonicalize the profile.
Fixes a regression introduced in
795d430d90e41eb172315bfccf79c9f13fc0ebfa whereby 'guix describe' would
no longer display the generation number of ~/.config/guix/current.
* guix/scripts/describe.scm (guix-describe): Call 'canonicalize-profile'.
---
guix/scripts/describe.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm
index c1a20fe..e595020 100644
--- a/guix/scripts/describe.scm
+++ b/guix/scripts/describe.scm
@@ -158,4 +158,4 @@ in the format specified by FMT."
(#f
(display-checkout-info format))
(profile
- (display-profile-info profile format))))))
+ (display-profile-info (canonicalize-profile profile) format))))))