From f252b4b138b1fe59a04802f7a0d58afda68fab05 Mon Sep 17 00:00:00 2001 From: Ivan Schaller Date: Thu, 31 Aug 2023 12:26:21 +0200 Subject: [PATCH] fix path of test binary Signed-off-by: Ivan Schaller --- lib/utils.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.bash b/lib/utils.bash index 39b078c..735ac5e 100755 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -107,7 +107,7 @@ function install_version() { rm -rf "${install_path}" fail "Expected ${install_path}/${TOOL_NAME} to be executable" fi - if ! "${TOOL_NAME}" "${TOOL_TEST}"; then + if ! "${install_path}/${TOOL_NAME}" "${TOOL_TEST}"; then rm -rf "${install_path}" fail "Error with command: '${TOOL_NAME} ${TOOL_TEST}'" fi