diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:00 +0200 |
commit | dd9b31254bc8d43c28d9d545e09bbed1e4eeb762 (patch) | |
tree | 532aac0bc738ac464f2235d8a18160f1a2994994 /gnu/packages/crypto.scm | |
parent | d90d24bcbc9399ff9d7fb7759d56988d11f86c0a (diff) |
gnu: cryfs: Remove trailing #t.
* gnu/packages/crypto.scm (cryfs)[arguments]:
Don't explicitly return #t from phases.
Diffstat (limited to 'gnu/packages/crypto.scm')
-rw-r--r-- | gnu/packages/crypto.scm | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index b6dcbc0c0d..e63ed011aa 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -1519,16 +1519,15 @@ non-encrypted files.") (when tests? (let ((tests (find-files "." "-test$"))) ;; XXX: Disable failing tests. Unfortunately there are a - ;; few. Some only fail in the build environment due to - ;; FUSE not being available. - (for-each invoke - (lset-difference string-contains - tests - '("cpp-utils-test" - "cryfs-cli-test" - "blobstore-test" - "fspp-test"))))) - #t))))) + ;; few. Some only fail in the build environment due to + ;; FUSE not being available. + (for-each invoke + (lset-difference string-contains + tests + '("cpp-utils-test" + "cryfs-cli-test" + "blobstore-test" + "fspp-test")))))))))) (native-inputs (list pkg-config python-wrapper)) (inputs |