Fix minor bug in clean target.

The VERSION file could not be removed if it was not
found. Deletion is now forced with "-f" option.
This commit is contained in:
Sylvain Tricot 2021-03-22 08:36:26 +01:00
parent 909b5dd7f3
commit 8129fdd8d1
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ clean::
# remove previous sdist
@rm -rf dist
@rm -rf *.egg*
@rm VERSION
@rm -f VERSION
help: