Skip to content

Commit

Permalink
Fix testing the other daemon
Browse files Browse the repository at this point in the history
The eventual PATH entry needs the `.../bin` or we will not use the right
daemon.

(cherry picked from commit 06fb6ae)
  • Loading branch information
Ericson2314 committed Dec 9, 2021
1 parent d0527aa commit 9c15e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -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@

Expand Down

0 comments on commit 9c15e15

Please sign in to comment.