Invoke teleo-kb through bash on noexec tmpfs
Some checks are pending
CI / lint-and-test (push) Waiting to run

This commit is contained in:
fwazb 2026-07-25 11:08:14 -07:00
parent bbdb14db4c
commit 0820d0933b

View file

@ -151,7 +151,7 @@ def _status_environment(profile: Path) -> dict[str, str]:
def _database_status(profile: Path) -> dict[str, Any]:
wrapper = profile / "bin" / "teleo-kb"
completed = subprocess.run(
[str(wrapper), "status", "--format", "json"],
["/bin/bash", str(wrapper), "status", "--format", "json"],
cwd=profile,
env=_status_environment(profile),
check=False,