diff --git a/docs.org b/docs.org index c5e8436..e9a6d66 100644 --- a/docs.org +++ b/docs.org @@ -163,7 +163,7 @@ check_dependencies() { local install_cmd="" # Check for required commands and collect missing ones - for pkg in "${REQUIRED_PACKAGES[@]}"; do + for pkg in "${REQUIRED_COMMANDS[@]}"; do if ! command -v "$pkg" &> /dev/null; then missing_packages+=("$pkg") else diff --git a/install.sh b/install.sh index 0e88721..67a3761 100644 --- a/install.sh +++ b/install.sh @@ -103,7 +103,7 @@ check_dependencies() { local install_cmd="" # Check for required commands and collect missing ones - for pkg in "${REQUIRED_PACKAGES[@]}"; do + for pkg in "${REQUIRED_COMMANDS[@]}"; do if ! command -v "$pkg" &> /dev/null; then missing_packages+=("$pkg") else