From 730bb6d166baa5530cc75b4c94ae46c8077884b0 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 21 Sep 2025 14:59:00 +0300 Subject: [PATCH 1/2] Fixed find.sh script errors about unmatched single quotes and binary files that are now ignored. Thanks to xet7 ! --- find.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/find.sh b/find.sh index b552866e4..7c11e282d 100755 --- a/find.sh +++ b/find.sh @@ -13,4 +13,6 @@ if (( $# != 1 )); then exit 0 fi -find . | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs grep --no-messages $1 | less +#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 . | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs grep -I --no-messages $1 | less From 93f0e0b1253c90904d112dc22608930727ca54ba Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 21 Sep 2025 15:01:17 +0300 Subject: [PATCH 2/2] Updated ChangeLog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0111f1b32..17eb03de4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,8 @@ and fixes the following bugs: Thanks to xet7. - [Fix links in docker-compose.yml to point to doc in repo](https://github.com/wekan/wekan/pull/5882). Thanks to Skylark13. +- [Fixed find.sh script errors about unmatched single quotes and binary files that are now ignored](https://github.com/wekan/wekan/commit/730bb6d166baa5530cc75b4c94ae46c8077884b0). + Thanks to xet7. Thanks to above GitHub users for their contributions and translators for their translations.