diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 16:16:46 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-27 12:46:28 +0200 |
commit | a83d0c57b9701f98b085cbab49389243de73fa4a (patch) | |
tree | 95a1a14eb7139fee4d4854555f0433bdcdff816e | |
parent | 0eb21fbaf7afe2f70b60aa5021bf395bc7cd3dce (diff) | |
download | patches-a83d0c57b9701f98b085cbab49389243de73fa4a.tar patches-a83d0c57b9701f98b085cbab49389243de73fa4a.tar.gz |
gnu: stgit: Return #t from phases.
* gnu/packages/version-control.scm (stgit)[arguments]: Substitute INVOKE
for SYSTEM*.
-rw-r--r-- | gnu/packages/version-control.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 342b5325f8..c2c5a64d74 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -912,7 +912,7 @@ lot easier.") ;; two tests will fail -> disable them. TODO: fix the failing tests (delete-file "t/t3300-edit.sh") (delete-file "t/t7504-commit-msg-hook.sh") - (zero? (system* "make" "test"))))))) + (invoke "make" "test")))))) (home-page "http://procode.org/stgit/") (synopsis "Stacked Git") (description |