1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

tests: rsync: Set PATH.

This is a followup to 8b9cad01e9, which
would leave PATH unset.

* gnu/tests/rsync.scm (run-rsync-test)[test]("service running"): Add
call to 'setenv' for PATH.
This commit is contained in:
Ludovic Courtès
2020-03-16 10:33:29 +01:00
parent bc6bf142d3
commit 4df02ab675

View File

@@ -64,6 +64,10 @@ PORT."
(marionette-eval
'(begin
(use-modules (gnu services herd))
;; Make sure the 'rsync' command is found.
(setenv "PATH" "/run/current-system/profile/bin")
(start-service 'rsync))
marionette))