version: sunnypilot v0.10.1 (staging-tici) date: 2025-10-13T01:35:37 master commit: 737a6c4236e843034680c951005b38d15815363f
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
|