Files
slowlyo a9b1dcce98 fix: ga scripts prefer project .venv over system python
Prefer project virtualenv Python in ga launchers to avoid PEP 668/system Python issues, falling back to PATH python when no venv exists.
2026-05-26 12:03:14 +08:00

6 lines
113 B
Bash
Executable File

#!/usr/bin/env bash
cd "$(dirname "$0")"
PY=.venv/bin/python
[ -x "$PY" ] || PY=python
exec "$PY" -m ga_cli "$@"