mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
machine: ssh: Use 'formatted-message'.
* gnu/machine/ssh.scm (machine-check-initrd-modules): Use 'formatted-message' instead of 'format' + '&message'.
This commit is contained in:
parent
73303067c7
commit
120051e1b9
1 changed files with 2 additions and 4 deletions
|
@ -270,11 +270,9 @@ (define dev
|
|||
|
||||
(remote-let ((missing remote-exp))
|
||||
(unless (null? missing)
|
||||
(raise (condition
|
||||
(&message
|
||||
(message (format #f (G_ "missing modules for ~a:~{ ~a~}~%")
|
||||
(raise (formatted-message (G_ "missing modules for ~a:~{ ~a~}~%")
|
||||
(file-system-device fs)
|
||||
missing))))))))
|
||||
missing)))))
|
||||
|
||||
(map missing-modules file-systems))
|
||||
|
||||
|
|
Loading…
Reference in a new issue