#!/bin/sh # D4 audit integrity sweep — driver-manager-audit-no-stubs.sh # # Thin wrapper around `driver-manager-audit-no-stubs.py` so CI/CD pipelines # and operator workstations use the same entry-point. Returns 0 on clean, # 1 on violations. See `local/scripts/driver-manager-audit-no-stubs.py` for # the audit rules. set -eu REPO_ROOT="$(cd "$(dirname "$0")/../.." && pwd)" cd "$REPO_ROOT" python3 "$REPO_ROOT/local/scripts/driver-manager-audit-no-stubs.py"