Files
onepilot/scripts/lint/check_nomerge_comments.sh
Adeeb Shihadeh ba7f7fd7a6 0.9.8 hotfixes
2025-04-07 12:42:46 -07: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