From fa9963535214140fd32dea53b86d0a4fdf8a6185 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Mon, 30 Dec 2024 08:55:08 -0300 Subject: [PATCH] Fixed typo --- docs.org | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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