Spaces:
Runtime error
Runtime error
File size: 290 Bytes
2857cf3 | 1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/env sh
# -- Block publication when the project audit cannot run or reports a trace.
if [ ! -x ".venv/bin/python" ]; then
echo "Privacy audit requires .venv/bin/python. Run uv sync --all-extras --locked." >&2
exit 1
fi
exec .venv/bin/python -m kneiff_dev.privacy_audit
|