From 31f9d46c01ea2763dcc47cc54d1d0d31c9d80b37 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 29 May 2026 07:41:51 -0500 Subject: [PATCH] fix --- common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.sh b/common.sh index 56434b2..c71b11b 100755 --- a/common.sh +++ b/common.sh @@ -76,7 +76,7 @@ function error_exit() { } 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" fi }