diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-13 13:24:30 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-13 13:24:30 -0400 |
| commit | 83a528be3a23bd43beb6a002c023a3673cad03ae (patch) | |
| tree | 48864efe2d74271e2e3688cb31ecf7742f1a8844 /sync-py-modules.sh | |
| parent | 7866a9a77d2a0922883637576f6cdac122c56d42 (diff) | |
| download | decky-lsfg-vk-83a528be3a23bd43beb6a002c023a3673cad03ae.tar.gz decky-lsfg-vk-83a528be3a23bd43beb6a002c023a3673cad03ae.zip | |
update readme w manual install instructions
Diffstat (limited to 'sync-py-modules.sh')
| -rw-r--r-- | sync-py-modules.sh | 17 |
1 files changed, 17 insertions, 0 deletions
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" |
