Skip to content
Snippets Groups Projects
Commit 58c7e39a authored by Lars Bilke's avatar Lars Bilke Committed by Dmitri Naumov
Browse files

release script: update doxygen file.

parent a970a846
No related branches found
No related tags found
No related merge requests found
...@@ -48,3 +48,11 @@ subprocess.run( ...@@ -48,3 +48,11 @@ subprocess.run(
check=True, check=True,
cwd=source_path / "web", cwd=source_path / "web",
) )
path = Path(source_path / "Documentation" / "mainpage.dox.in")
text = path.read_text()
text = text.replace(
" * The documentation for OGS releases can be found here:\n *\n",
f" * The documentation for OGS releases can be found here:\n *\n * - https://doxygen.opengeosys.org/v{new_version}\n",
)
path.write_text(text)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment