feat(patching): ensure LXST patch script runs during installation in Makefile and Taskfile

This commit is contained in:
Ivan
2026-04-29 18:26:51 -05:00
parent 35f08b9112
commit ce18847058
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -3,6 +3,7 @@
install:
pnpm install
poetry install
poetry run python scripts/patch_lxst_pyogg_ogg_ctypes.py
# Python backend only. For HMR, use: make dev OR make run in one terminal and pnpm run dev in another.
run:
+2
View File
@@ -76,11 +76,13 @@ tasks:
desc: Install Python dependencies using Poetry
cmds:
- poetry install
- poetry run python scripts/patch_lxst_pyogg_ogg_ctypes.py
setup:be:
desc: Full backend environment setup
cmds:
- poetry install
- poetry run python scripts/patch_lxst_pyogg_ogg_ctypes.py
- poetry run pip install ruff
# --- Execution ---