From 0adaea24bbea37fee626f541e8402600bda5fce9 Mon Sep 17 00:00:00 2001 From: Lucie Date: Thu, 5 Mar 2020 16:34:29 +0100 Subject: [PATCH] compilemessages in setup is not necessary anymore (#4299) --- tasks.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tasks.py b/tasks.py index feb2da4b612..b896a3b60ec 100644 --- a/tasks.py +++ b/tasks.py @@ -138,8 +138,6 @@ def setup(ctx): l10n_update(ctx) print("* Creating fake data.") manage(ctx, "load_fake_data") - print("* Compiling locale strings.") - compilemessages(ctx) print("* Updating block information.") manage(ctx, "block_inventory") @@ -163,8 +161,6 @@ def catch_up(ctx): ctx.run("pipenv install --dev") print("* Applying database migrations.") migrate(ctx) - print("* Compiling locale strings.") - compilemessages(ctx) print("* Updating localizable fields.") l10n_sync(ctx) l10n_update(ctx) @@ -294,8 +290,6 @@ def docker_catch_up(ctx): ctx.run("docker-compose build") print("* Applying database migrations.") docker_migrate(ctx) - print("* Compiling locale strings.") - docker_compilemessages(ctx) print("* Updating block information.") docker_l10n_block_inventory(ctx) @@ -319,8 +313,6 @@ def docker_new_env(ctx): docker_migrate(ctx) print("* Creating fake data.") docker_manage(ctx, "load_fake_data") - print("* Compiling locale strings.") - docker_compilemessages(ctx) print("* Updating block information.") docker_l10n_block_inventory(ctx) docker_create_super_user(ctx)