change required tools

This commit is contained in:
2025-11-28 12:42:59 -05:00
parent 5dad1e212b
commit 95894bc379

View File

@@ -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[@]}"