From 84d35b3b686b7c0077100a41dff5f24dfc5cdd6d Mon Sep 17 00:00:00 2001 From: archipelago Date: Wed, 1 Jul 2026 10:54:34 -0400 Subject: [PATCH] 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 --- scripts/deploy-to-target.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deploy-to-target.sh b/scripts/deploy-to-target.sh index 29280ed1..eb95c29b 100755 --- a/scripts/deploy-to-target.sh +++ b/scripts/deploy-to-target.sh @@ -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