forked from organicmaps/organicmaps
[strings] Faster grep by ignoring 3party
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
ffb5727910
commit
95706c5f0d
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ def grep_android():
|
|||
|
||||
def grep_core():
|
||||
logging.info("Grepping core")
|
||||
grep = "grep -r -I 'GetLocalizedString' {0}/*".format(OMIM_ROOT)
|
||||
grep = "grep -r -I --exclude-dir {0}/3party 'GetLocalizedString' {0}/*".format(OMIM_ROOT)
|
||||
ret = android_grep_wrapper(grep, CORE_RE)
|
||||
return parenthesize(ret)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue