Files
MoreTore/scripts/lint/check_nomerge_comments.sh
T
Vehicle Researcher a1af07d967 openpilot v0.11.0
2026-03-14 04:08:36 +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