Skip to content
This repository has been archived by the owner on Jul 17, 2018. It is now read-only.

Commit

Permalink
expand 'make clean' to remove .tox so I can rebuild virtualenvs easier
Browse files Browse the repository at this point in the history
also move find ... to the end to reduce the amount of work it has to
do
  • Loading branch information
crccheck committed Nov 13, 2014
1 parent 530dd6f commit 5781af8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Expand Up @@ -12,13 +12,14 @@ help:


clean:
find . -name "*.pyc" -delete
find . -name ".DS_Store" -delete
rm -rf .tox
rm -rf MANIFEST
rm -rf build
rm -rf dist
rm -rf htmlcov
rm -rf *.egg-info
find . -name "*.pyc" -delete
find . -name ".DS_Store" -delete
coverage erase


Expand Down

0 comments on commit 5781af8

Please sign in to comment.