machine: ssh: Respect calling convention for monadic procedures.
Fixes a regression introduced in
2885c3568e
.
Reported by Mathieu Othacehe.
* gnu/machine/ssh.scm (deploy-managed-host)[eval/error-handling]: Return
two values in the standard case.
master
parent
0928e55266
commit
fe509e017f
|
@ -459,7 +459,8 @@ have you run 'guix archive --generate-key?'")
|
|||
(lambda (store)
|
||||
(guard (condition ((inferior-exception? condition)
|
||||
(values (begin handler ...) store)))
|
||||
(run-with-store store (eval exp))))))
|
||||
(values (run-with-store store (eval exp))
|
||||
store)))))
|
||||
|
||||
(mbegin %store-monad
|
||||
(with-roll-back #f
|
||||
|
|
Reference in New Issue