guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 01/03: remote: Fix type error in the list of store items to send.
Date: Mon, 15 Jul 2019 12:27:29 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 5db07b971d5729d349152a4d7ddab80a235ac0a0
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jul 15 16:02:44 2019 +0200

    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 d49ee91..0959025 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]