Skip to content

Commit 2e3237f

Browse files
Fix command is wrong. Added $required_tool missing
1 parent 6e553ea commit 2e3237f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests-ffi/tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
function check() {
55
local required_tool=$1
66

7-
if ! command -v >/dev/null 2>&1; then
7+
if ! command -v "$required_tool" >/dev/null 2>&1; then
88
echo "$required_tool not found in system"
99
exit
1010
fi

0 commit comments

Comments
 (0)