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:
parent
909b5dd7f3
commit
8129fdd8d1
|
@ -54,7 +54,7 @@ clean::
|
||||||
# remove previous sdist
|
# remove previous sdist
|
||||||
@rm -rf dist
|
@rm -rf dist
|
||||||
@rm -rf *.egg*
|
@rm -rf *.egg*
|
||||||
@rm VERSION
|
@rm -f VERSION
|
||||||
|
|
||||||
|
|
||||||
help:
|
help:
|
||||||
|
|
Loading…
Reference in New Issue