summaryrefslogtreecommitdiff
path: root/guix/scripts/system.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2020-06-14 14:16:37 +0200
committerMathieu Othacehe <othacehe@gnu.org>2020-06-14 17:42:36 +0200
commit80f92866e3a321bb8f8c5fa04744a3a93cfa6034 (patch)
treedfdd74463d47882dec76fdb31e183ac87ca0fdd1 /guix/scripts/system.scm
parent876a8d987085b8c64f32c8a320e4219575af285c (diff)
downloadguix-patches-80f92866e3a321bb8f8c5fa04744a3a93cfa6034.tar
guix-patches-80f92866e3a321bb8f8c5fa04744a3a93cfa6034.tar.gz
scripts: system: Fix "init" command.
This is a follow-up of 7ca533c7237622d70b423033c4506217d9ce4014. The introduced "target" variable is shadowing the target argument. * guix/scripts/system.scm (perform-action): Rename "target" variable to "target*".
Diffstat (limited to 'guix/scripts/system.scm')
-rw-r--r--guix/scripts/system.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 6769a602b1..212b49f008 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -802,8 +802,8 @@ static checks."
(check-initrd-modules os)))
(mlet* %store-monad
- ((target (current-target-system))
- (image -> (find-image file-system-type target))
+ ((target* (current-target-system))
+ (image -> (find-image file-system-type target*))
(sys (system-derivation-for-action os image action
#:file-system-type file-system-type
#:image-size image-size