[UDP] make doc parallel doc_markdown
This commit is contained in:
parent
154f9aa03b
commit
11ab53bc2d
1 changed files with 8 additions and 1 deletions
|
|
@ -84,4 +84,11 @@ doc_clean_user:
|
||||||
# documentation markdown - generate multilingual documentation (en + fr)
|
# documentation markdown - generate multilingual documentation (en + fr)
|
||||||
.PHONY: doc_markdown
|
.PHONY: doc_markdown
|
||||||
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 {}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue