nckx pushed a commit to branch master
in repository guix.
commit a49a007328f72c98e42e84c84100d1e460359361
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Tue May 4 13:49:45 2021 +0200
gnu: indi: Stop returning #t from phases.
* gnu/packages/astronomy.scm (indi)[arguments]: Remove #t phase return
values.
---
gnu/packages/astronomy.scm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 5dcb03e..c7d27a5 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -820,13 +820,11 @@ provide you with detailed information about each pass.")
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(with-directory-excursion "test"
- (invoke "ctest"))
- #t)))
+ (invoke "ctest")))))
(add-before 'install 'set-install-directories
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
- (mkdir-p (string-append out "/lib/udev/rules.d")))
- #t)))))
+ (mkdir-p (string-append out "/lib/udev/rules.d"))))))))
(native-inputs
`(("googletest" ,googletest)))
(inputs