diff options
author | Théophane Hufschmitt <regnat@users.noreply.github.com> | 2021-11-19 10:34:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 10:34:27 +0100 |
commit | f8d0311e75449379885aec41778ecc2b301779c8 (patch) | |
tree | 6857c51e882e2a14037c2016b2cf1016ec80156a | |
parent | f836e3e2ce8fc4e76ceffdc21ce76a8f0c120dc2 (diff) | |
parent | 06fb6aecea43218e66ccc879471ffebb7dbfee78 (diff) |
Merge pull request #5598 from obsidiansystems/fix-daemon-tests
Fix testing the other daemon
-rw-r--r-- | tests/common.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/common.sh.in b/tests/common.sh.in index 3d0d56120..61abab1d7 100644 --- a/tests/common.sh.in +++ b/tests/common.sh.in @@ -38,7 +38,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@ |