me
/
guix
Archived
1
0
Fork 0

guix system: reconfigure: Always use "/" as GRUB's target file system.

* guix/scripts/system.scm (perform-action) <reconfigure>: Wrap
  'install-grub' call in 'false-if-exception'.  Always use "/" as the
  target.
master
Ludovic Courtès 2014-07-14 16:14:15 +02:00
parent 66672a455c
commit 3942305eb1
1 changed files with 2 additions and 1 deletions

View File

@ -287,7 +287,8 @@ actions."
((reconfigure) ((reconfigure)
(mlet %store-monad ((% (switch-to-system os))) (mlet %store-monad ((% (switch-to-system os)))
(when grub? (when grub?
(unless (install-grub grub.cfg device target) (unless (false-if-exception
(install-grub grub.cfg device "/"))
(leave (_ "failed to install GRUB on device '~a'~%") (leave (_ "failed to install GRUB on device '~a'~%")
device))) device)))
(return #t))) (return #t)))