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'.
master
parent
39bb294170
commit
de83660dd3
|
@ -466,7 +466,7 @@ Return the list of store items actually sent."
|
||||||
;; Compute the subset of FILES missing on SESSION and send them.
|
;; Compute the subset of FILES missing on SESSION and send them.
|
||||||
(let* ((files (if recursive? (requisites local files) files))
|
(let* ((files (if recursive? (requisites local files) files))
|
||||||
(session (channel-get-session (store-connection-socket remote)))
|
(session (channel-get-session (store-connection-socket remote)))
|
||||||
(missing (take files 20) #;(inferior-remote-eval
|
(missing (inferior-remote-eval
|
||||||
`(begin
|
`(begin
|
||||||
(use-modules (guix)
|
(use-modules (guix)
|
||||||
(srfi srfi-1) (srfi srfi-26))
|
(srfi srfi-1) (srfi srfi-26))
|
||||||
|
|
Reference in New Issue