diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-24 20:45:00 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-24 21:18:11 +0100 |
commit | 562a0776839128eb1103a0cecc6563c443262945 (patch) | |
tree | 91d139ccf9e85f837bd58113fb7835a158a861cd /gnu/packages/android.scm | |
parent | 50233d95707389eb526587c04f58b4281ebcaa6c (diff) | |
download | patches-562a0776839128eb1103a0cecc6563c443262945.tar patches-562a0776839128eb1103a0cecc6563c443262945.tar.gz |
gnu: git-repo: Unconditionally return #T from "check" phase.
* gnu/packages/android.scm (git-repo)[arguments]: Use INVOKE.
Diffstat (limited to 'gnu/packages/android.scm')
-rw-r--r-- | gnu/packages/android.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index d5a60cb5bb..17bf428fe6 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -759,7 +759,7 @@ def _FindRepo(): (delete 'build) ; nothing to build (replace 'check (lambda _ - (zero? (system* "python" "-m" "nose")))) + (invoke "python" "-m" "nose"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |