mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
installer: Fix compute calls.
* gnu/installer/newt/keymap.scm (run-keymap-page): Add missing argument to compute procedure. * gnu/installer/newt/network.scm (run-network-page): Ditto.
This commit is contained in:
parent
35e99a23b5
commit
54754efc91
2 changed files with 3 additions and 3 deletions
|
@ -81,7 +81,7 @@ (define keymap-steps
|
|||
(installer-step
|
||||
(id 'variant)
|
||||
(compute
|
||||
(lambda (result)
|
||||
(lambda (result _)
|
||||
(let ((variants (x11-keymap-layout-variants
|
||||
(result-step result 'layout))))
|
||||
(run-variant-page variants
|
||||
|
|
|
@ -131,7 +131,7 @@ (define network-steps
|
|||
(installer-step
|
||||
(id 'power-technology)
|
||||
(compute
|
||||
(lambda (result)
|
||||
(lambda (result _)
|
||||
(let ((technology (result-step result 'select-technology)))
|
||||
(connman-enable-technology technology)
|
||||
(wait-technology-powered technology)))))
|
||||
|
@ -140,7 +140,7 @@ (define network-steps
|
|||
(installer-step
|
||||
(id 'connect-service)
|
||||
(compute
|
||||
(lambda (result)
|
||||
(lambda (result _)
|
||||
(let* ((technology (result-step result 'select-technology))
|
||||
(type (technology-type technology)))
|
||||
(cond
|
||||
|
|
Loading…
Reference in a new issue