Refactor install.sh to remove redundant docker dependency check

This commit is contained in:
Roger Gonzalez 2024-12-29 22:46:59 -03:00
parent 90f55b10d8
commit e7b7b38383
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6

View File

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