Changed find.sh to not search from translations, because I'm trying to find code, not translations.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2026-01-13 22:50:39 +02:00
parent 5b47340b76
commit 6ad9770bb6

View file

@ -15,4 +15,4 @@ fi
#find . | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs grep --no-messages $1 | less
#find . -print0 | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs -0 grep --no-messages $1 | less
find . -type f -not -path '*/node_modules/*' -not -path '*/.build/*' -not -path '*/.meteor/*' -not -path '*/.git/*' -exec grep -I --no-messages "$1" {} + | less
find . -type f -not -path '*/node_modules/*' -not -path '*/.build/*' -not -path '*/.meteor/*' -not -path '*/.git/*' -not -path '*/imports/i18n/data/*' -exec grep -I --no-messages "$1" {} + | less