guix: ant-build-system: Fix pattern for collecting jar files.
The former pattern included the "jar" binary. * guix/build/ant-build-system.scm (generate-classpath): Change pattern. Suggested by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
5741e3e552
commit
abc4cb57ca
|
@ -83,7 +83,7 @@ INPUTS."
|
||||||
(string-join
|
(string-join
|
||||||
(apply append (map (match-lambda
|
(apply append (map (match-lambda
|
||||||
((_ . dir)
|
((_ . dir)
|
||||||
(find-files dir "\\.*jar$")))
|
(find-files dir "\\.jar$")))
|
||||||
inputs)) ":"))
|
inputs)) ":"))
|
||||||
|
|
||||||
(define* (unpack #:key source #:allow-other-keys)
|
(define* (unpack #:key source #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue