From 560fd22023242fa28bfae6dcfa2fba75ec05975b Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 6 Oct 2025 21:57:30 +0000 Subject: [PATCH] fix: Update deployment script to install Node.js 20 instead of 18 --- deploy-to-production.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-to-production.sh b/deploy-to-production.sh index 325ddbc..e688063 100755 --- a/deploy-to-production.sh +++ b/deploy-to-production.sh @@ -35,8 +35,8 @@ echo -e "${GREEN}✓ Repository ready${NC}" echo "" echo -e "${BLUE}Step 2: Checking Node.js installation...${NC}" if ! command -v node &> /dev/null; then - echo -e "${YELLOW}Installing Node.js 18...${NC}" - curl -fsSL https://deb.nodesource.com/setup_18.x | bash - + echo -e "${YELLOW}Installing Node.js 20...${NC}" + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt-get install -y nodejs fi echo -e "${GREEN}✓ Node.js $(node -v)${NC}"