Skip to content

Commit

Permalink
fix path of test binary
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Schaller <ivan@schaller.sh>
  • Loading branch information
olofvndrhr committed Aug 31, 2023
1 parent d459a80 commit f252b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f252b4b

Please sign in to comment.