diff --git a/Makefile b/Makefile index aae1a75..f488cdb 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ clean-build: ## remove build artifacts rm -fr dist/ rm -fr .eggs/ find . -name '*.egg-info' -exec rm -fr {} + - find . -name '*.egg' -exec rm -f {} + + find . -name '*.egg' -exec rm -rf {} + clean-pyc: ## remove Python file artifacts @echo cleaning pyc file artifacts ...