From dc6754a0fc0f4f166bd2d3282fc7fafca994c1af Mon Sep 17 00:00:00 2001 From: Claude Code Date: Sun, 6 Jul 2025 19:00:32 -0400 Subject: [PATCH] Add Git installation to deployment script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Install git package alongside Node.js and build-essential - Ensures git is available for cloning the repository - Prevents deployment failures on minimal server images 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- scripts/deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 050da57..b999794 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -49,10 +49,10 @@ esac echo "📦 Updating system packages..." sudo apt update && sudo apt upgrade -y -# Install Node.js (ARM64 compatible) -echo "📦 Installing Node.js..." +# Install Node.js and Git +echo "📦 Installing Node.js and Git..." curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - -sudo apt install -y nodejs build-essential +sudo apt install -y nodejs build-essential git # Install Go (required for xcaddy) echo "📦 Installing Go for $GO_ARCH architecture..."