Remove git pull from deploy script

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
SamoilenkoVadym 2026-02-06 22:26:12 +00:00
parent 189cb3dab3
commit 26095be769

View file

@ -50,7 +50,6 @@ check_command() {
#=============================================================================
log_info "Running pre-flight checks..."
check_command docker
check_command git
check_command curl
# Check for docker-compose (either standalone or docker compose plugin)
@ -65,15 +64,6 @@ fi
log_success "All required commands available (using: $DOCKER_COMPOSE)"
#=============================================================================
# Pull latest code
#=============================================================================
log_info "Pulling latest code..."
cd "$REPO_DIR"
git fetch origin
git reset --hard origin/main
log_success "Code updated to latest"
#=============================================================================
# Check .env file
#=============================================================================