Skip to content

Commit

Permalink
Ignore errors in make clean command
Browse files Browse the repository at this point in the history
  • Loading branch information
osantana committed Aug 17, 2015
1 parent f14e73c commit 5261a49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.1.2
=====

- Ignore errors in ``make clean``

1.1.1
=====

Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ test:
python setup.py test

clean:
@find . -iname "*.py[ocd]" -delete
@find . -iname "__pycache__" -exec rm -rf {} \;
@rm -rf dist
-find . -iname "*.py[ocd]" -delete
-find . -iname "__pycache__" -exec rm -rf {} \;
-rm -rf dist

release: clean test
git tag `python setup.py -q version`
Expand Down

0 comments on commit 5261a49

Please sign in to comment.