guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: syncthing: Invoke build steps with INVOKE.


From: Leo Famulari
Subject: 01/01: gnu: syncthing: Invoke build steps with INVOKE.
Date: Sun, 19 Aug 2018 17:51:14 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 1feaca62d33f9f129cf2346e38106a42f284ff00
Author: Leo Famulari <address@hidden>
Date:   Sun Aug 19 17:43:12 2018 -0400

    gnu: syncthing: Invoke build steps with INVOKE.
    
    * gnu/packages/syncthing.scm (syncthing)[arguments]: Use INVOKE.
---
 gnu/packages/syncthing.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index ffc9047..6577955 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -65,12 +65,12 @@
          (replace 'build
            (lambda* (#:key inputs #:allow-other-keys)
              (with-directory-excursion "src/github.com/syncthing/syncthing"
-               (zero? (system* "go" "run" "build.go" "-no-upgrade")))))
+               (invoke "go" "run" "build.go" "-no-upgrade"))))
 
          (replace 'check
            (lambda _
              (with-directory-excursion "src/github.com/syncthing/syncthing"
-               (zero? (system* "go" "run" "build.go" "test")))))
+               (invoke "go" "run" "build.go" "test"))))
 
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)



reply via email to

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