fix(make): add recursive remove to clean-build

This commit is contained in:
Vadim Kravcenko 2015-04-24 08:31:10 +02:00
parent 3004f93243
commit bdd8b66235

View File

@ -21,7 +21,7 @@ clean-build:
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:
find . -name '*.pyc' -exec rm -f {} +