Skip to content

Commit f055207

Browse files
author
Vinit Kumar
committed
fix: cleanup makefile
1 parent a7ffc20 commit f055207

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ clean-build: ## remove build artifacts
3636
rm -fr dist/
3737
rm -fr .eggs/
3838
find . -name '*.egg-info' -exec rm -fr {} +
39-
find . -name '*.egg' -exec rm -f {} +
39+
find . -name '*.egg' -exec rm -rf {} +
4040

4141
clean-pyc: ## remove Python file artifacts
4242
find . -name '*.pyc' -exec rm -f {} +
4343
find . -name '*.pyo' -exec rm -f {} +
44-
find . -name '*~' -exec rm -f {} +
44+
find . -name '*~' -exec rm -rf {} +
4545
find . -name '__pycache__' -exec rm -fr {} +
4646

4747
clean-test: ## remove test and coverage artifacts

0 commit comments

Comments
 (0)