From 575cf87b98c58a89e3677e07990fa4341de3f927 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 19 Aug 2021 23:37:38 +0200 Subject: [PATCH] also run static on update --- tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 92003fe809..3de0241c07 100644 --- a/tasks.py +++ b/tasks.py @@ -198,7 +198,7 @@ def translate(c): manage(c, "compilemessages") -@task(pre=[install, migrate, translate_stats, clean_settings]) +@task(pre=[install, migrate, translate_stats, static, clean_settings]) def update(c): """ Update InvenTree installation. @@ -211,6 +211,7 @@ def update(c): - install - migrate - translate_stats + - static - clean_settings """ pass