diff options
author | Björn Höfling <bjoern.hoefling@bjoernhoefling.de> | 2020-09-20 10:27:00 +0200 |
---|---|---|
committer | Björn Höfling <bjoern.hoefling@bjoernhoefling.de> | 2020-10-26 21:36:09 +0100 |
commit | f503cfc9c51ea4ddd6cc9c027f1897e7866e411e (patch) | |
tree | 8067673d01dc8024db174d32bf8c7fb031ee9e5f | |
parent | 542dc0ee4f2385c4d71f65fe3a36f4fe9eb68b9a (diff) | |
download | guix-f503cfc9c51ea4ddd6cc9c027f1897e7866e411e.tar.gz guix-f503cfc9c51ea4ddd6cc9c027f1897e7866e411e.zip |
build/maven-build-system: Return #t in fix-pom-files phase.
* guix/build/maven-build-system.scm (fix-pom-files): Return #t.
-rw-r--r-- | guix/build/maven-build-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build/maven-build-system.scm b/guix/build/maven-build-system.scm index 914298d584..534b4ebcee 100644 --- a/guix/build/maven-build-system.scm +++ b/guix/build/maven-build-system.scm @@ -100,7 +100,8 @@ inputs local-packages excludes))))))) (define* (fix-pom-files #:key inputs local-packages exclude #:allow-other-keys) - (fix-pom "pom.xml" inputs local-packages exclude)) + (fix-pom "pom.xml" inputs local-packages exclude) + #t) (define* (build #:key outputs #:allow-other-keys) "Build the given package." |