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

Makefile

index 5354e31b16dc2070b9534082e713dc3e5b9abd44..d3856eef3034b139e78c54025d0b7452adb11d3a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -31,4 +31,4 @@ examples_distr:
 
 .PHONY: clean
 clean:
-       find . -depth -type f -name '*.py[co]' -delete
+       find . -name '*.py[co]' -type f -delete