guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: parallel: Don't end phase with #<undefined>.


From: Tobias Geerinckx-Rice
Subject: 02/02: gnu: parallel: Don't end phase with #<undefined>.
Date: Mon, 22 Jan 2018 12:48:54 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 28b0b21e3f406cdf3ba9ff32ce80c7108d3d032e
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Jan 22 18:24:45 2018 +0100

    gnu: parallel: Don't end phase with #<undefined>.
    
    * gnu/packages/parallel.scm (parallel)[arguments]: Use INVOKE.
---
 gnu/packages/parallel.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index d44a422..337e9d4 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -76,10 +76,10 @@
              #t))
          (add-after 'install 'post-install-test
            (lambda* (#:key outputs #:allow-other-keys)
-             (zero? (system* (string-append
-                              (assoc-ref outputs "out") "/bin/parallel")
-                             "echo"
-                             ":::" "1" "2" "3")))))))
+             (invoke (string-append
+                      (assoc-ref outputs "out") "/bin/parallel")
+                     "echo"
+                     ":::" "1" "2" "3"))))))
     (inputs
      `(("perl" ,perl)
        ("procps" ,procps)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]