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
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ (define (generate-classpath inputs)
|
|||
(string-join
|
||||
(apply append (map (match-lambda
|
||||
((_ . dir)
|
||||
(find-files dir "\\.*jar$")))
|
||||
(find-files dir "\\.jar$")))
|
||||
inputs)) ":"))
|
||||
|
||||
(define* (unpack #:key source #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue