Fix check_command in build.sh

This commit is contained in:
Felipe Santos
2025-03-10 19:18:04 -03:00
parent 7f4c450553
commit ad1bea088e
+1 -1
View File
@@ -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