diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-07-15 16:02:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-07-15 18:27:22 +0200 |
commit | 5db07b971d5729d349152a4d7ddab80a235ac0a0 (patch) | |
tree | bf6ee67e104790fd8b549232c42761e1ad852fbd | |
parent | e6bd575a720f49c726959a3139aa55b900919305 (diff) | |
download | guix-5db07b971d5729d349152a4d7ddab80a235ac0a0.tar.gz guix-5db07b971d5729d349152a4d7ddab80a235ac0a0.zip |
remote: Fix type error in the list of store items to send.
Fixes a regression introduced in 386857748097619b3b75a7bf93677b6aa742d03c.
* guix/remote.scm (remote-eval): Use 'append-map', not 'map', for
'derivation-input-output-paths'.
-rw-r--r-- | guix/remote.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/remote.scm b/guix/remote.scm index d49ee91b38..0959025963 100644 --- a/guix/remote.scm +++ b/guix/remote.scm @@ -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) |