]> git.phdru.name Git - m_lib.git/commitdiff
Refactor find parameters
authorOleg Broytman <phd@phdru.name>
Thu, 26 May 2016 13:27:32 +0000 (16:27 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 26 May 2016 13:27:32 +0000 (16:27 +0300)
There is no need to search files in depth. Optimization: filter by name
then by type.

Makefile

index f452a6fb6a38f4e431ce0e8ad81dfb5aad14ca89..89ab25411adae3e9ef8c92c8bcdf31452a9ee69a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,4 +5,4 @@ distr:
 
 .PHONY: clean
 clean:
-       find . -depth -type f -name '*.py[co]' -delete
+       find . -name '*.py[co]' -type f -delete