diff options
author | Simon Tournier <zimon.toutoune@gmail.com> | 2025-02-03 19:58:16 +0100 |
---|---|---|
committer | Simon Tournier <zimon.toutoune@gmail.com> | 2025-02-03 20:13:31 +0100 |
commit | 4c536fe5893d34e0442f2a7f6c57c46b9fd8afc3 (patch) | |
tree | 312852baa81f7fa98f2b82524f4c889044852749 /gnu | |
parent | 01dd276cdc1df357dba837574b37905e44c13eba (diff) | |
download | guix-4c536fe5893d34e0442f2a7f6c57c46b9fd8afc3.tar.gz guix-4c536fe5893d34e0442f2a7f6c57c46b9fd8afc3.zip |
gnu: rclone: Fix subdir for tests.
Fixes <https://issues.guix.gnu.org/75977>.
* gnu/packages/sync.scm (rclone)[argument]: Add #:test-subdirs.
Change-Id: Id94a8c9ce1d3caed013f0bfcaf2ce3f2e8739607
Reported by <Konrad Hinsen <konrad.hinsen@fastmail.net>
Change-Id: I4661d48f12497279f4fe5abeb0d1dda7490e721b
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/sync.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm index af736d0c28..a4d4e03b91 100644 --- a/gnu/packages/sync.scm +++ b/gnu/packages/sync.scm @@ -577,8 +577,10 @@ over the Internet in an HTTP and CDN friendly way; ;; un-bundle them. (build-system go-build-system) (arguments - '(#:import-path "github.com/rclone/rclone" - #:install-source? #f)) + (list + #:import-path "github.com/rclone/rclone" + #:install-source? #f + #:test-subdirs #~(list "."))) (synopsis "@code{rsync} for cloud storage") (description "@code{Rclone} is a command line program to sync files and directories to and from different cloud storage providers. |