This commit is contained in:
2026-05-29 07:41:51 -05:00
parent 92db938094
commit 31f9d46c01
+1 -1
View File
@@ -76,7 +76,7 @@ function error_exit() {
} }
function check_binary() { function check_binary() {
if command -v "$1" >/dev/null 2>&1; then if !command -v "$1" >/dev/null 2>&1; then
error_exit "failed to find required binary: $1" error_exit "failed to find required binary: $1"
fi fi
} }