From 6cba2e82da9178e62c237ac8284f83fb7c003808 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 1 Jun 2026 11:04:21 +1000 Subject: [PATCH] fix(deploy): exclude venv/ from push-workers rsync The prod venv at /opt/void-workers/venv was being deleted on every push because rsync --delete saw no matching dir in the source (which has .venv/, not venv/). Now both names are excluded. Co-Authored-By: Claude Opus 4.7 --- deploy/push-workers.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/push-workers.sh b/deploy/push-workers.sh index 1782728..f98d9b0 100755 --- a/deploy/push-workers.sh +++ b/deploy/push-workers.sh @@ -9,6 +9,7 @@ REMOTE_DIR=${REMOTE_DIR:-/opt/void-workers} rsync -avz --delete \ --exclude .venv \ + --exclude venv \ --exclude __pycache__ \ --exclude '*.egg-info' \ --exclude tests \