From: Sergey Matveev Date: Thu, 15 Jul 2021 11:42:53 +0000 (+0300) Subject: find -exec optimization X-Git-Tag: v7.4.0^2~8 X-Git-Url: http://www.git.cypherpunks.ru/?p=nncp.git;a=commitdiff_plain;h=59ae65031d0011c769224ce294a7fc4c859bc111 find -exec optimization --- diff --git a/makedist.sh b/makedist.sh index 94f95c9..4fa4796 100755 --- a/makedist.sh +++ b/makedist.sh @@ -104,9 +104,9 @@ perl -i -npe "s/GO test/GO test -mod=vendor/" test.do rm makedist.sh VERSION.do rm -r .git redo-cleanup full -find . -type d -exec chmod 755 {} \; -find . -type f -exec chmod 644 {} \; -find . -type f -name "*.sh" -exec chmod +x {} \; +find . -type d -exec chmod 755 {} + +find . -type f -exec chmod 644 {} + +find . -type f -name "*.sh" -exec chmod +x {} + chmod +x contrib/do cd ..