#!/usr/bin/env bash
# Repo-aware `rg` (ripgrep) shim (A16). Shadows the real rg when this dir is
# first on $PATH. Delegates to _shim.sh (allow/deny + recursion-safe exec).
PRISM_SHIM_VERB=rg
export PRISM_SHIM_VERB
# shellcheck source=_shim.sh
. "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)/_shim.sh" "$@"
