ssh: Fix regression in 'send-files'.

Regression introduced in b03267df6d.
The (take files 20) is a leftover from testing session.

* guix/ssh.scm (send-files): Fix value for 'missing'.
This commit is contained in:
Ludovic Courtès 2020-09-02 23:55:20 +02:00
parent 39bb294170
commit de83660dd3
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -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))