diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 10:06:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 10:06:35 +0100 |
commit | a1e83a9856100b7d1993ad7917e11d8bb37c2646 (patch) | |
tree | 54a63ca083107de69a2073422856b8d718e51037 | |
parent | ce49fdcce91803c873b899b088f9ed2ce22f1cd3 (diff) | |
download | patches-a1e83a9856100b7d1993ad7917e11d8bb37c2646.tar patches-a1e83a9856100b7d1993ad7917e11d8bb37c2646.tar.gz |
gnu: pplacer-scripts: Use INVOKE.
* gnu/packages/bioinformatics.scm (pplacer-scripts)[arguments]: Use INVOKE and
return #T unconditionally.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 94b82660c9..8820ba0d8e 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4410,8 +4410,7 @@ downstream analysis.") (add-after 'unpack 'enter-scripts-dir (lambda _ (chdir "scripts"))) (replace 'check - (lambda _ - (zero? (system* "python" "-m" "unittest" "discover" "-v")))) + (lambda _ (invoke "python" "-m" "unittest" "discover" "-v") #t)) (add-after 'install 'wrap-executables (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |