[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: git-download: Fix recursive checkouts.
From: |
Eric Bavier |
Subject: |
01/01: git-download: Fix recursive checkouts. |
Date: |
Sun, 18 Mar 2018 22:02:48 -0400 (EDT) |
bavier pushed a commit to branch master
in repository guix.
commit be95bcf0887dc7d90177fda20cab56c6e248dcfa
Author: Eric Bavier <address@hidden>
Date: Thu Mar 15 23:25:01 2018 -0500
git-download: Fix recursive checkouts.
* guix/git-download.scm (git-fetch)<build>: Fix match on INPUTS, which may
contain package outputs.
---
guix/git-download.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/git-download.scm b/guix/git-download.scm
index 731e549..33f102b 100644
--- a/guix/git-download.scm
+++ b/guix/git-download.scm
@@ -109,7 +109,7 @@ HASH-ALGO (a symbol). Use NAME as the file name, or a
generic name if #f."
;; grep, etc. to be in $PATH.
(set-path-environment-variable "PATH" '("bin")
(match '#+inputs
- (((names dirs) ...)
+ (((names dirs outputs ...) ...)
dirs)))
(or (git-fetch (getenv "git url") (getenv "git commit")