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:
parent
e6bd575a72
commit
5db07b971d
|
@ -102,7 +102,8 @@ remote store."
|
||||||
(lowered-gexp-sources lowered))
|
(lowered-gexp-sources lowered))
|
||||||
|
|
||||||
(if build-locally?
|
(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)))
|
sources)))
|
||||||
(mbegin %store-monad
|
(mbegin %store-monad
|
||||||
(built-derivations inputs)
|
(built-derivations inputs)
|
||||||
|
|
Loading…
Reference in New Issue