Files
convert/.gemini/hooks/crg-update.sh
T
2026-07-30 15:24:02 +02:00

11 lines
356 B
Bash

#!/usr/bin/env bash
# code-review-graph: incremental update after write/replace (Gemini CLI hook)
# Must output ONLY JSON on stdout. Low-noise: no systemMessage.
set -euo pipefail
cat > /dev/null || true
code-review-graph update --skip-flows --repo "C:/Users/tony1/PhpstormProjects/Convert" >/dev/null 2>&1 || true
echo '{"suppressOutput": true}'
exit 0