From 6ad9770bb61824012b3078044b9cd33675b68833 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 13 Jan 2026 22:50:39 +0200 Subject: [PATCH] Changed find.sh to not search from translations, because I'm trying to find code, not translations. Thanks to xet7 ! --- find.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find.sh b/find.sh index e23b4eba6..643185fd2 100755 --- a/find.sh +++ b/find.sh @@ -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