a9b1dcce98
Prefer project virtualenv Python in ga launchers to avoid PEP 668/system Python issues, falling back to PATH python when no venv exists.
6 lines
113 B
Bash
Executable File
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 "$@"
|