From 11ab53bc2da307470d3af7321a275dc328fa72fe Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Fri, 6 Mar 2026 23:35:46 -0500 Subject: [PATCH] [UDP] make doc parallel doc_markdown --- conf/make.documentation.Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/conf/make.documentation.Makefile b/conf/make.documentation.Makefile index 20f69bb..ae5389e 100644 --- a/conf/make.documentation.Makefile +++ b/conf/make.documentation.Makefile @@ -84,4 +84,11 @@ doc_clean_user: # documentation markdown - generate multilingual documentation (en + fr) .PHONY: doc_markdown doc_markdown: - source ./.venv.erplibre/bin/activate && find . -name "*.base.md" -not -path "./.venv*" -not -path "./addons/*" -not -path "./odoo*" -not -path "./.repo/*" -not -path "./node_modules/*" -exec mmg --verbose --yes {} \; + source ./.venv.erplibre/bin/activate && \ + find . -name "*.base.md" \ + -not -path "./.venv*" \ + -not -path "./addons/*" \ + -not -path "./odoo*" \ + -not -path "./.repo/*" \ + -not -path "./node_modules/*" \ + | parallel mmg --verbose --yes {}