mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
guix system: Fix typo affecting 'guix system init'.
Fixes <http://bugs.gnu.org/19279>.
Fixes a regression introduced in cc7fa59
.
Reported by Tomas Cech <tcech@suse.cz>.
* guix/scripts/system.scm (install): Fix order of arguments to 'lift'
and 'lift2'.
This commit is contained in:
parent
847391fe62
commit
c9e46f1c39
1 changed files with 2 additions and 2 deletions
|
@ -164,8 +164,8 @@ (define (maybe-copy to-copy)
|
|||
(copy-closure to-copy target #:log-port log-port)))))
|
||||
|
||||
(let ((os-dir (derivation->output-path os-drv))
|
||||
(format (lift %store-monad format))
|
||||
(populate (lift2 %store-monad populate-root-file-system)))
|
||||
(format (lift format %store-monad))
|
||||
(populate (lift2 populate-root-file-system %store-monad)))
|
||||
|
||||
(mbegin %store-monad
|
||||
(maybe-copy os-dir)
|
||||
|
|
Loading…
Reference in a new issue