From 6792bee11d454489c55d942471462639b86b7c92 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 15 Aug 2025 19:38:37 +0200 Subject: [PATCH] Change to doc deploy script to account for not using sphinx-multiversion --- docs/deploy.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/deploy.py b/docs/deploy.py index 5edaafd6d5..8536f03393 100644 --- a/docs/deploy.py +++ b/docs/deploy.py @@ -64,7 +64,9 @@ def deploy(): # copy built branches to current dir os.system("ls") - os.system("cp -Rf build/html/* .") + os.system(f"mdkir {latest_version}") + + os.system("cp -Rf build/html/* {latest_version}/") os.system("ls")