From ce188470586da69a31f7b51179bc0036be1f4b6e Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 29 Apr 2026 18:26:51 -0500 Subject: [PATCH] feat(patching): ensure LXST patch script runs during installation in Makefile and Taskfile --- Makefile | 1 + Taskfile.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Makefile b/Makefile index a4c360c..9432626 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/Taskfile.yml b/Taskfile.yml index 7fff36c..49340c6 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -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 ---