From 5db07b971d5729d349152a4d7ddab80a235ac0a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 15 Jul 2019 16:02:44 +0200 Subject: 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'. --- guix/remote.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3