summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorBjörn Höfling <bjoern.hoefling@bjoernhoefling.de>2020-09-20 10:27:00 +0200
committerBjörn Höfling <bjoern.hoefling@bjoernhoefling.de>2020-10-26 21:36:09 +0100
commitf503cfc9c51ea4ddd6cc9c027f1897e7866e411e (patch)
tree8067673d01dc8024db174d32bf8c7fb031ee9e5f /guix
parent542dc0ee4f2385c4d71f65fe3a36f4fe9eb68b9a (diff)
build/maven-build-system: Return #t in fix-pom-files phase.
* guix/build/maven-build-system.scm (fix-pom-files): Return #t.
Diffstat (limited to 'guix')
-rw-r--r--guix/build/maven-build-system.scm3
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."