Skip to content

Commit

Permalink
compilemessages in setup is not necessary anymore (#4299)
Browse files Browse the repository at this point in the history
  • Loading branch information
patjouk committed Mar 5, 2020
1 parent 09ab24a commit 0adaea2
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand All @@ -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)
Expand Down Expand Up @@ -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)

Expand All @@ -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)
Expand Down

0 comments on commit 0adaea2

Please sign in to comment.