diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-04 13:49:45 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-04 15:40:33 +0200 |
commit | a49a007328f72c98e42e84c84100d1e460359361 (patch) | |
tree | e8582dcd5758cfc7771c16e462bc090a63810138 /gnu/packages/astronomy.scm | |
parent | 9a40c1d5bb09cf5dda3604125e72e51300f16d77 (diff) | |
download | guix-a49a007328f72c98e42e84c84100d1e460359361.tar guix-a49a007328f72c98e42e84c84100d1e460359361.tar.gz |
gnu: indi: Stop returning #t from phases.
* gnu/packages/astronomy.scm (indi)[arguments]: Remove #t phase return values.
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 5dcb03ee5a..c7d27a58d3 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 |