From ad1bea088e780c5393f893cfe93419266758c05b Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Mon, 10 Mar 2025 19:18:04 -0300 Subject: [PATCH] Fix check_command in build.sh --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index e365eb54..ac9e01b2 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,7 +1,7 @@ #!/bin/sh check_command() { - if ! command -v $1 &> /dev/null + if ! command -v "$1" > /dev/null then echo "Error: $1 could not be found. Please install it." exit 1