diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-19 09:32:58 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-19 10:11:25 +0100 |
commit | c00131d4ef4f05eac8c6516027dc31805feea6bc (patch) | |
tree | 6b63dcb35506908facb6ee5e4bd5012f4dda9159 /gnu/packages/tor.scm | |
parent | 7eb9b6ed6cf72c681a0d1816cc9fa63a38259319 (diff) |
gnu: onionshare: Remove trailing #T.
* gnu/packages/tor.scm (onionshare)[arguments]: Remove trailing #T from build
phases.
Diffstat (limited to 'gnu/packages/tor.scm')
-rw-r--r-- | gnu/packages/tor.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 8608d00e78..3cd7983827 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -299,7 +299,7 @@ OnionShare.") ((#:phases phases) `(modify-phases ,phases (replace 'change-directory - (lambda _ (chdir "desktop/src") #t)) + (lambda _ (chdir "desktop/src"))) (add-after 'unpack 'patch-tests (lambda _ ;; Disable tests that require starting servers, which will hang @@ -359,8 +359,7 @@ OnionShare.") (install-file "org.onionshare.OnionShare.svg" (string-append share "/icons/hicolor/scalable/apps")) (install-file "org.onionshare.OnionShare.desktop" - (string-append share "/applications")) - #t))))))) + (string-append share "/applications"))))))))) (native-inputs `(("python-pytest" ,python-pytest))) (inputs |