From a653ec4006ff175abbc7f21ef85f2edc1415c9d6 Mon Sep 17 00:00:00 2001 From: Bernard Gawor Date: Fri, 11 Sep 2026 15:40:03 +0200 Subject: [PATCH] Fix docs build after images directory removal --- scripts.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts.py b/scripts.py index 0b08627..6dabb55 100644 --- a/scripts.py +++ b/scripts.py @@ -61,15 +61,12 @@ def generate_docs(): -o doc \ fishjam" ) - input_images = here / "images" out = here / "docs" / "api" - out_images = here / "docs" / "api" / "images" if out.exists(): shutil.rmtree(out) shutil.copytree(input, out) - shutil.copytree(input_images, out_images) # ...and rename the .html files to .md so that mkdocs picks them up! for f in out.glob("**/*.html"):