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. 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