Files
sunnypilot/scripts/lint/check_nomerge_comments.sh
github-actions[bot] 144f16c35f sunnypilot v2026.003.000 release
date: 2026-09-11T13:29:29
master commit: 6135084c94
2026-09-11 13:29:30 +00:00

11 lines
173 B
Bash
Executable File

#!/usr/bin/env bash
FAIL=0
if grep -n '\(#\|//\)\([[:space:]]*\)NOMERGE' $@; then
echo -e "NOMERGE comments found! Remove them before merging\n"
FAIL=1
fi
exit $FAIL