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
|
(add-after 'build 'add-properties
|
||||||
(lambda* (#:key jar-name #:allow-other-keys)
|
(lambda* (#:key jar-name #:allow-other-keys)
|
||||||
(with-directory-excursion "src"
|
(with-directory-excursion "src"
|
||||||
(zero? (apply system* "jar" "-uf"
|
(apply invoke "jar" "-uf"
|
||||||
(string-append "../build/jar/" jar-name)
|
(string-append "../build/jar/" jar-name)
|
||||||
(find-files "." "\\.properties$")))))))))
|
(find-files "." "\\.properties$")))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("java-classpathx-servletapi" ,java-classpathx-servletapi)
|
`(("java-classpathx-servletapi" ,java-classpathx-servletapi)
|
||||||
("java-javaewah" ,java-javaewah)
|
("java-javaewah" ,java-javaewah)
|
||||||
|
|
Loading…
Reference in New Issue