civodul pushed a commit to branch master
in repository guix.

commit de83660dd386b73957fe4ad2dc08ce5b8e1f0e7f
Author: Ludovic Courtès <[email protected]>
AuthorDate: Wed Sep 2 23:55:20 2020 +0200

    ssh: Fix regression in 'send-files'.
    
    Regression introduced in b03267df6d5ec44e9617b6aab0df14a2e79f822e.
    The (take files 20) is a leftover from testing session.
    
    * guix/ssh.scm (send-files): Fix value for 'missing'.
---
 guix/ssh.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/ssh.scm b/guix/ssh.scm
index 5f94528..5f05733 100644
--- a/guix/ssh.scm
+++ b/guix/ssh.scm
@@ -466,7 +466,7 @@ 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 (store-connection-socket remote)))
-         (missing (take files 20) #;(inferior-remote-eval
+         (missing (inferior-remote-eval
                    `(begin
                       (use-modules (guix)
                                    (srfi srfi-1) (srfi srfi-26))

Reply via email to