diff --git a/tools/ci/check_grep.sh b/tools/ci/check_grep.sh index c2d1bd5b490..1d2b4a433ba 100755 --- a/tools/ci/check_grep.sh +++ b/tools/ci/check_grep.sh @@ -10,6 +10,10 @@ if grep -El '^\".+\" = \(.+\)' _maps/**/*.dmm; then echo "ERROR: Non-TGM formatted map detected. Please convert it using Map Merger!" st=1 fi; +if grep -P 'Merge conflict marker' _maps/**/*.dmm; then + echo "ERROR: Merge conflict markers detected in map, please resolve all merge failures!" + st=1 +fi; if grep -P '^\ttag = \"icon' _maps/**/*.dmm; then echo "ERROR: tag vars from icon state generation detected in maps, please remove them." st=1