diff options
-rw-r--r-- | gnu/machine/ssh.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/machine/ssh.scm b/gnu/machine/ssh.scm index 93b0a007da..ecd02e336c 100644 --- a/gnu/machine/ssh.scm +++ b/gnu/machine/ssh.scm @@ -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 |