🔧(backend) ignore .venv in compile messages command

We have to change the ignored files used in the compoilemessages
command. uv is using .venv directory and not venv
This commit is contained in:
Quentin BEY
2026-01-29 23:17:03 +01:00
parent 38d2125ecf
commit 8ace3099b9

View File

@@ -215,7 +215,7 @@ superuser: ## Create an admin superuser with password "admin"
.PHONY: superuser .PHONY: superuser
back-i18n-compile: ## compile the gettext files back-i18n-compile: ## compile the gettext files
@$(MANAGE) compilemessages --ignore="venv/**/*" @$(MANAGE) compilemessages --ignore=".venv/**/*"
.PHONY: back-i18n-compile .PHONY: back-i18n-compile
back-i18n-generate: ## create the .pot files used for i18n back-i18n-generate: ## create the .pot files used for i18n