diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-04-27 05:13:48 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-04-27 05:36:55 +0200 |
commit | 2216b6f4108abfb2f75db7667beaa46ee7d630e8 (patch) | |
tree | 00c0e23b15aa291406c04bee869f2ccd407b31c0 /gnu/packages/admin.scm | |
parent | 3290f10773ed6573a158623d29c61712a86d9cbb (diff) | |
download | guix-2216b6f4108abfb2f75db7667beaa46ee7d630e8.tar guix-2216b6f4108abfb2f75db7667beaa46ee7d630e8.tar.gz |
gnu: thefuck: Use INVOKE.
* gnu/packages/admin.scm (thefuck)[arguments]: Substitute INVOKE for
SYSTEM* and end phase with explicit #t.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index ce4dca67fa..1d9fa7c673 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1962,7 +1962,8 @@ throughput (in the same interval).") (add-installed-pythonpath inputs outputs) ;; Some tests need write access to $HOME. (setenv "HOME" "/tmp") - (zero? (system* "py.test" "-v"))))))) + (invoke "py.test" "-v") + #t))))) (propagated-inputs `(("python-colorama" ,python-colorama) ("python-decorator" ,python-decorator) |