Closed
Description
I'm using nox to build most of my automated process now and that include generating the translation .pot files for my documentation.
Before I was running:
cd docs
sphinx-intl update -p build/gettext -l fr -l en
now I would like to run it from the root of my repository as:
sphinx-intl update -p docs/build/gettext -l fr -l en
When I do the last one, the conf.py file is not detected and all my pot files are saved in a default locales
directory even though I use _locale
in my conf.py
.
Is it possible to specify the location of the conf.py
file to the command ? If not, could we add this option ?