Skip to content

Commit

Permalink
Force removal of the .tox when doing make clean
Browse files Browse the repository at this point in the history
The addition of the gnocchi tox job means there is a git repo in there
after that tox job has run, which has files that will not delete without
a force.
  • Loading branch information
cdent committed Jan 6, 2017
1 parent 64c2e60 commit c755719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ clean:
find . -name "*.pyc" |xargs rm || true
rm -r dist || true
rm -r build || true
rm -r .tox || true
rm -rf .tox || true
rm -r .testrepository || true
rm -r cover .coverage || true
rm -r .eggs || true
Expand Down

0 comments on commit c755719

Please sign in to comment.