This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository python-efl.
View the commit online.
commit 7f59a7b4b45212a2451e776d2d2f78d1c788f89e
Author: Dave Andreoli <[email protected]>
AuthorDate: Sat Aug 30 12:04:04 2025 +0200
better clean command
---
Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 10f8623..0dccb38 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,8 @@ test:
.PHONY: clean
clean:
- find -type f -name "*.c" ! -name "e_dbus.c" -delete
+ find -type f -name "*.c" ! -name "e_dbus.c" -exec rm -r {} \;
+ find -type d -name "__pycache__" -exec rm -r {} \;
rm -rf build/
rm -rf dist/
rm -rf src/python_efl.egg-info/
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.