diff --git a/guix/ssh.scm b/guix/ssh.scm index e31ec53a4a..226c4fd97d 100644 --- a/guix/ssh.scm +++ b/guix/ssh.scm @@ -141,7 +141,8 @@ (define* (send-files local files remote recursive? (log-port (current-error-port))) "Send the subset of FILES from LOCAL (a local store) that's missing to -REMOTE, a remote store. When RECURSIVE? is true, send the closure of FILES." +REMOTE, a remote store. When RECURSIVE? is true, send the closure of FILES. +Return the list of store items actually sent." ;; Compute the subset of FILES missing on SESSION and send them. (let* ((files (if recursive? (requisites local files) files)) (session (channel-get-session (nix-server-socket remote))) @@ -170,7 +171,7 @@ (define* (send-files local files remote ;; Wait for completion of the remote process. (let ((result (zero? (channel-get-exit-status port)))) (close-port port) - result))) + missing))) (define (remote-store-session remote) "Return the SSH channel beneath REMOTE, a remote store as returned by