[tools] Faster string grepping

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-03-29 09:17:41 +02:00 committed by Alexander Borsuk
parent 84563accd3
commit c8b16d6952

View file

@ -92,7 +92,7 @@ def grep_android():
def grep_core():
logging.info("Grepping core...")
grep = "grep -r -I --exclude-dir {0}/3party 'GetLocalizedString' {0}/*".format(
grep = "grep -wr -I --exclude-dir {0}/3party --exclude-dir {0}/.git --exclude-dir {0}/data 'GetLocalizedString' {0}/*".format(
OMIM_ROOT)
ret = android_grep_wrapper(grep, CORE_RE)
logging.info("Found in core: {0}".format(len(ret)))