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

Makefile

index 39368faa57ad25bac791f2dd7d6d1b17173476bc..6867d6446345947e6c4d5d82fb288560d418feb8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -21,4 +21,4 @@ tests: test
 
 .PHONY: clean
 clean:
-       find . -depth -type f -name '*.py[co]' -delete
+       find . -name '*.py[co]' -type f -delete