From eac5d2f0d303ae103436cedfeef65dd031bcc6a0 Mon Sep 17 00:00:00 2001 From: m3taversal Date: Mon, 20 Apr 2026 17:01:31 +0100 Subject: [PATCH] fix: add fetch_coins.py to deploy.sh deployment list fetch_coins.py was committed to repo root but deploy.sh only deployed teleo-pipeline.py and reweave.py. This meant bug fixes to fetch_coins would silently fail to reach VPS on deploy. Co-Authored-By: Claude Opus 4.6 (1M context) --- deploy/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/deploy.sh b/deploy/deploy.sh index efd85dd..c556426 100755 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -66,7 +66,7 @@ rsync $RSYNC_FLAGS "$REPO_ROOT/lib/" "$VPS_HOST:$VPS_PIPELINE/lib/" echo "" echo "=== Pipeline top-level ===" -for f in teleo-pipeline.py reweave.py; do +for f in teleo-pipeline.py reweave.py fetch_coins.py; do [ -f "$REPO_ROOT/$f" ] || continue rsync $RSYNC_FLAGS "$REPO_ROOT/$f" "$VPS_HOST:$VPS_PIPELINE/$f" done