summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-08-28 23:05:57 +0200
committerLudovic Courtès <ludo@gnu.org>2022-08-30 00:40:04 +0200
commitb08439809f0868a74d0bd0e14d45cb3e5dd46a8c (patch)
tree9a64abeab4b5f6f961e41a09daa30865edd70364 /guix
parent9096bc28a30d48486efa13488ac4814b2ccd0fa2 (diff)
downloadguix-patches-b08439809f0868a74d0bd0e14d45cb3e5dd46a8c.tar
guix-patches-b08439809f0868a74d0bd0e14d45cb3e5dd46a8c.tar.gz
reconfigure: Use 'current-channels' to obtain provenance data.
Previously, build-time metadata from (guix config) would be ignored when available--e.g., when running /run/current-system/profile/bin/guix. This is a followup to 316fc2acbb112bfa572ae30f95a93bcd56621234. * guix/scripts/system/reconfigure.scm (check-forward-update): Use 'current-channels' rather than 'current-profile' + 'profile-channels'.
Diffstat (limited to 'guix')
-rw-r--r--guix/scripts/system/reconfigure.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/guix/scripts/system/reconfigure.scm b/guix/scripts/system/reconfigure.scm
index 9ca66687ee..9bd26a39ee 100644
--- a/guix/scripts/system/reconfigure.scm
+++ b/guix/scripts/system/reconfigure.scm
@@ -34,7 +34,7 @@
#:use-module (guix monads)
#:use-module (guix store)
#:use-module ((guix self) #:select (make-config.scm))
- #:autoload (guix describe) (current-profile)
+ #:autoload (guix describe) (current-channels)
#:use-module (guix channels)
#:autoload (guix git) (update-cached-checkout)
#:use-module (guix i18n)
@@ -372,8 +372,7 @@ currently-deployed commit (from CURRENT-CHANNELS, which is as returned by
'guix system describe' by default) and the target commit (as returned by 'guix
describe')."
(define new
- (or (and=> (current-profile) profile-channels)
- '()))
+ (current-channels))
(when (null? current-channels)
(warning (G_ "cannot determine provenance for current system~%")))