mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-20 09:12:05 +08:00
3e5e2b52ea
* nomerge * Update modeld.py
11 lines
173 B
Bash
Executable File
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
|