From e7b7b383830dc2c02173919f86e8fbaa82842e3e Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sun, 29 Dec 2024 22:46:59 -0300 Subject: [PATCH] Refactor install.sh to remove redundant docker dependency check --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 116014d..a20c791 100644 --- a/install.sh +++ b/install.sh @@ -38,7 +38,7 @@ readonly YELLOW='\033[1;33m' readonly NC='\033[0m' # No Color # Dependencies -readonly REQUIRED_COMMANDS=("curl" "docker" "docker" "sed" "awk") +readonly REQUIRED_COMMANDS=("curl" "sed" "awk") log_success() { echo -e "${GREEN}$1${NC}"