X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/25cb0dced028c91d9a73d7faedae4d3e73162902..d94a01f36a822e9c4c8f7713d41065d8782fcd24:/Makefile

diff --git a/Makefile b/Makefile
index 471127c17..3956cf34c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,9 @@
 
 
 deploy: src/wolnelektury/localsettings.py
-	git submodule update --init
 	pip install -r requirements/requirements.txt
 	src/manage.py migrate --noinput
+	src/manage.py update_counters
 	src/manage.py collectstatic --noinput
 
 
@@ -12,7 +12,6 @@ deploy: src/wolnelektury/localsettings.py
 test:
 	cd src
 	coverage run --branch --source='.' ./manage.py test; true
-	rm -rf ../htmlcov
 	coverage html -d ../htmlcov.new
 	rm -rf ../htmlcov
 	mv ../htmlcov.new ../htmlcov