gnu: java-jgit: Return #t from phases.
* gnu/packages/version-control.scm (java-jgit)[arguments]: Substitute INVOKE for SYSTEM*. Return #t rather than undefined from phases.
This commit is contained in:
parent
923e2d249e
commit
5bad645159
|
@ -1904,9 +1904,10 @@ unique algebra of patches called @url{http://darcs.net/Theory,Patchtheory}.
|
|||
(add-after 'build 'add-properties
|
||||
(lambda* (#:key jar-name #:allow-other-keys)
|
||||
(with-directory-excursion "src"
|
||||
(zero? (apply system* "jar" "-uf"
|
||||
(string-append "../build/jar/" jar-name)
|
||||
(find-files "." "\\.properties$")))))))))
|
||||
(apply invoke "jar" "-uf"
|
||||
(string-append "../build/jar/" jar-name)
|
||||
(find-files "." "\\.properties$")))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("java-classpathx-servletapi" ,java-classpathx-servletapi)
|
||||
("java-javaewah" ,java-javaewah)
|
||||
|
|
Loading…
Reference in New Issue