mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
guix system: Fix return value for 'reconfigure'.
* guix/scripts/system.scm (perform-action) <reconfigure>: Add missing 'return' expression.
This commit is contained in:
parent
fa16f84502
commit
314a83ef1e
1 changed files with 2 additions and 1 deletions
|
@ -289,7 +289,8 @@ (define* (perform-action action os
|
|||
(when grub?
|
||||
(unless (install-grub grub.cfg device target)
|
||||
(leave (_ "failed to install GRUB on device '~a'~%")
|
||||
device)))))
|
||||
device)))
|
||||
(return #t)))
|
||||
((init)
|
||||
(newline)
|
||||
(format #t (_ "initializing operating system under '~a'...~%")
|
||||
|
|
Loading…
Reference in a new issue