Force removal of the .tox when doing make clean

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.
This commit is contained in:
Chris Dent 2017-01-06 16:19:03 +00:00
parent 64c2e60496
commit c755719d1e

View File

@ -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