This commit is contained in:
Kovid Goyal 2023-07-16 13:16:52 +05:30
parent 4ad529618c
commit b37e59aa35
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -102,11 +102,13 @@ def run_man(args: Any) -> None:
def run_html(args: Any) -> None:
# Force a fresh build otherwise the search index is not correct
shutil.rmtree(os.path.join(docs_dir, '_build', 'dirhtml'))
with suppress(FileNotFoundError):
shutil.rmtree(os.path.join(docs_dir, '_build', 'dirhtml'))
call('make FAIL_WARN=1 "OPTS=-D analytics_id=G-XTJK3R7GF2" dirhtml', cwd=docs_dir)
add_old_redirects('docs/_build/dirhtml')
shutil.rmtree(os.path.join(docs_dir, '_build', 'html'))
with suppress(FileNotFoundError):
shutil.rmtree(os.path.join(docs_dir, '_build', 'html'))
call('make FAIL_WARN=1 "OPTS=-D analytics_id=G-XTJK3R7GF2" html', cwd=docs_dir)