diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-12-29 17:51:43 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-29 18:24:55 +0100 |
commit | a4ee6ac444ca71a93101b48bc1e6a5710026266c (patch) | |
tree | 78e4b69a3371049f95a2885f4651ba2a2dbf9a8d /gnu/installer | |
parent | 747b7246a6d81ec2aafc9a1c737f85da3092c5dc (diff) |
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.scm | 2 |
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)) |