remote: Fix type error in the list of store items to send.

Fixes a regression introduced in 3868577480.

* guix/remote.scm (remote-eval): Use 'append-map', not 'map', for
'derivation-input-output-paths'.
This commit is contained in:
Ludovic Courtès 2019-07-15 16:02:44 +02:00
parent e6bd575a72
commit 5db07b971d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 1 deletions

View File

@ -102,7 +102,8 @@ remote store."
(lowered-gexp-sources lowered))
(if build-locally?
(let ((to-send (append (map derivation-input-output-paths inputs)
(let ((to-send (append (append-map derivation-input-output-paths
inputs)
sources)))
(mbegin %store-monad
(built-derivations inputs)