From 2db6e2dd24d52c9c49bfd0b8cddaa1cd4d9dbb94 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 20 Oct 2015 16:16:27 +0200 Subject: [PATCH] Fix pylint calls --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e98b5ed..c71487b 100644 --- a/Makefile +++ b/Makefile @@ -10,9 +10,9 @@ test: @echo "Coverage data is available in HTML format under the htmlcov directory" lint: - rm -rf pylint + rm -rf pylint/* || true pylint --rcfile=.pylintrc $(MODULES) || true - mkdir pylint + mkdir pylint || true sh -c 'for file in pylint_*; do \ o="$${file#pylint_}"; \ mv "$$file" pylint/$$o; \