Skip to content

Commit

Permalink
build: make clean should only remove files
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentbernat committed Feb 21, 2015
1 parent c29e4ae commit 990f071
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -22,9 +22,9 @@ clean-build:
rm -fr *.egg-info

clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '*.pyc' -type f -exec rm -f {} +
find . -name '*.pyo' -type f -exec rm -f {} +
find . -name '*~' -type f -exec rm -f {} +
find . -name '__pycache__' -type d -exec rm -rf {} +

lint:
Expand Down

0 comments on commit 990f071

Please sign in to comment.