1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-01 23:05:57 +02:00

gnu: indi: Stop returning #t from phases.

* gnu/packages/astronomy.scm (indi)[arguments]: Remove #t phase return values.
This commit is contained in:
Tobias Geerinckx-Rice
2021-05-04 13:49:45 +02:00
parent 9a40c1d5bb
commit a49a007328
+2 -4
View File
@@ -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