summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Alexandre Salim <michel@michel-slm.name>2015-10-06 23:57:45 +0700
committerLars Wirzenius <liw@liw.fi>2015-10-19 21:54:40 +0300
commitd2e8af297cffdd52e1487ec3f12edc625e6dde06 (patch)
treeea03b1bc9e542f01a134678422ba01ae6fb73475
parent6e4348198446a30a1b9a38d2b11423659bfe28b7 (diff)
downloadttystatus-d2e8af297cffdd52e1487ec3f12edc625e6dde06.tar.gz
coverage-4.0a6 compatibility
coverage 4.0a6 no longer generates .coverage file; consistently usei rm -f instead of rm in Makefile so that build succeeds regardless
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5743ce0..dd894ff 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ all:
check:
python -m CoverageTestRunner --ignore-missing-from=without-tests
- rm .coverage
+ rm -f .coverage
pep8 ttystatus
if command -v pylint && pylint --version | grep '^pylint [1-9]'; \
then \