From 83a528be3a23bd43beb6a002c023a3673cad03ae Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sun, 13 Jul 2025 13:24:30 -0400 Subject: update readme w manual install instructions --- sync-py-modules.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sync-py-modules.sh (limited to 'sync-py-modules.sh') diff --git a/sync-py-modules.sh b/sync-py-modules.sh new file mode 100644 index 0000000..f79108d --- /dev/null +++ b/sync-py-modules.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +# sync-py-modules.sh +# Script to keep py_modules/lsfg_vk in sync with development changes + +echo "Syncing py_modules/lsfg_vk..." + +# Remove old py_modules content +rm -rf py_modules/lsfg_vk/__pycache__ 2>/dev/null + +# Copy updated files (excluding cache) +rsync -av --exclude="__pycache__" lsfg_vk/ py_modules/lsfg_vk/ 2>/dev/null || { + echo "Note: lsfg_vk/ directory not found - this is expected after cleanup" + echo "py_modules/lsfg_vk/ is now the primary development location" +} + +echo "py_modules sync complete" -- cgit v1.2.3