summaryrefslogtreecommitdiff
path: root/gnu/installer
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-12-29 17:51:43 +0100
committerLudovic Courtès <ludo@gnu.org>2019-12-29 18:24:55 +0100
commita4ee6ac444ca71a93101b48bc1e6a5710026266c (patch)
tree78e4b69a3371049f95a2885f4651ba2a2dbf9a8d /gnu/installer
parent747b7246a6d81ec2aafc9a1c737f85da3092c5dc (diff)
downloadguix-patches-a4ee6ac444ca71a93101b48bc1e6a5710026266c.tar
guix-patches-a4ee6ac444ca71a93101b48bc1e6a5710026266c.tar.gz
installer: Pass '--fallback' to 'guix system init'.
Fixes <https://bugs.gnu.org/38608>. Reported by Nathan Dehnel <ncdehnel@gmail.com>. * gnu/installer/final.scm (install-system): Pass '--fallback' to 'guix system init'.
Diffstat (limited to 'gnu/installer')
-rw-r--r--gnu/installer/final.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm
index 855b640030..1b85900912 100644
--- a/gnu/installer/final.scm
+++ b/gnu/installer/final.scm
@@ -102,7 +102,7 @@ Start COW-STORE service on target directory and launch guix install command in
a subshell. LOCALE must be the locale name under which that command will run,
or #f. Return #t on success and #f on failure."
(let ((install-command
- (format #f "guix system init ~a ~a"
+ (format #f "guix system init --fallback ~a ~a"
(%installer-configuration-file)
(%installer-target-dir))))
(mkdir-p (%installer-target-dir))