From 1928fb112e29ea032f8a54c3e55c9f3a0e759f7e Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 9 Nov 2020 21:15:48 +0100 Subject: [PATCH] [MIRROR] Grep for spelling nanotrasen as nanotransen (#1650) * Grep for spelling nanotrasen as nanotransen (#54849) * Grep for spelling nanotrasen as nanotransen Co-authored-by: TiviPlus <57223640+TiviPlus@users.noreply.github.com> --- tools/ci/check_grep.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/ci/check_grep.sh b/tools/ci/check_grep.sh index 05b5437304f..d05be0f0bc7 100644 --- a/tools/ci/check_grep.sh +++ b/tools/ci/check_grep.sh @@ -61,6 +61,14 @@ if grep -i 'centcomm' _maps/**/*.dmm; then echo "ERROR: Misspelling(s) of CENTCOM detected in maps, please remove the extra M(s)." st=1 fi; +if grep -ni 'nanotransen' code/**/*.dm; then + echo "Misspelling(s) of nanotrasen detected in code, please remove the extra N(s)." + st=1 +fi; +if grep -ni 'nanotransen' _maps/**/*.dmm; then + echo "Misspelling(s) of nanotrasen detected in maps, please remove the extra N(s)." + st=1 +fi; if ls _maps/*.json | grep -P "[A-Z]"; then echo "Uppercase in a map json detected, these must be all lowercase." st=1