From d95f60b3e5236577ce0b368f1ce5b2cda40e2ab4 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Thu, 18 Nov 2021 22:22:33 +0000 Subject: [PATCH] Fix testing the other daemon The eventual PATH entry needs the `.../bin` or we will not use the right daemon. (cherry picked from commit 06fb6aecea43218e66ccc879471ffebb7dbfee78) --- tests/common.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common.sh.in b/tests/common.sh.in index 3a3ea855dbe..4c5a86b9e49 100644 --- a/tests/common.sh.in +++ b/tests/common.sh.in @@ -35,7 +35,7 @@ if [[ -n "${NIX_CLIENT_PACKAGE:-}" ]]; then fi DAEMON_PATH="$PATH" if [[ -n "${NIX_DAEMON_PACKAGE:-}" ]]; then - DAEMON_PATH="${NIX_DAEMON_PACKAGE}:$DAEMON_PATH" + DAEMON_PATH="${NIX_DAEMON_PACKAGE}/bin:$DAEMON_PATH" fi coreutils=@coreutils@