From 95894bc3792ff96a2a5ad1d566edd49dbdf920e9 Mon Sep 17 00:00:00 2001 From: Kitty Cat Date: Fri, 28 Nov 2025 12:42:59 -0500 Subject: [PATCH] change required tools --- build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 901224e..b67eaba 100755 --- a/build.sh +++ b/build.sh @@ -61,8 +61,7 @@ set_vars() { check_tools() { # Ensure that we have everything we need to work before we get started. TOOLS_NEEDED=() - [ ! -x "$(command -v make)" ] && TOOLS_NEEDED+=(make) - [ ! -x "$(command -v patch)" ] && TOOLS_NEEDED+=(patch) + [ ! -x "$(command -v curl)" ] && TOOLS_NEEDED+=(curl) [ ! -x "$(command -v zip)" ] && TOOLS_NEEDED+=(zip) if [ "${#TOOLS_NEEDED[@]}" -gt 0 ]; then echo "You are missing: ${TOOLS_NEEDED[@]}"