Skip to content

Commit 8243df7

Browse files
committed
FIx
2 parents 0f14fe0 + 5d3e742 commit 8243df7

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

doc/conf.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ def _sync_user_docs() -> None:
2626
if src.is_file():
2727
shutil.copy2(src, DOCS_DIR / name)
2828

29+
res_dst = DOCS_DIR / "res"
30+
res_dst.mkdir(exist_ok=True)
31+
32+
splash_src = PROJECT_ROOT / "res" / "AI-gen-splashscreen_05_01_2026_512.png"
33+
if splash_src.is_file():
34+
shutil.copy2(splash_src, res_dst / splash_src.name)
35+
2936
icons_src = PROJECT_ROOT / "res" / "icons"
3037
res_dst = DOCS_DIR / "res"
3138
icons_dst = res_dst / "icons"

0 commit comments

Comments
 (0)