fix(deploy): also exclude .venv from the rsync payload

reticulum-daemon/.venv (a local Python virtualenv bundling PyInstaller +
esptool + Qt hooks, several hundred MB) was also being synced to deploy
targets uncached -- same class of bug as the releases/ exclude just added.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
archipelago 2026-07-01 10:54:34 -04:00
parent aa849849e8
commit 84d35b3b68

View File

@ -556,6 +556,7 @@ rsync -avz --delete \
--exclude 'image-recipe/_archived/build' \
--exclude 'image-recipe/_archived/results' \
--exclude 'releases' \
--exclude '.venv' \
"$PROJECT_DIR/" "$TARGET_HOST:$TARGET_DIR/"
section_end