Add static map workaround for blog

This commit is contained in:
Marty Oehme 2024-07-07 12:06:07 +02:00
parent 04bbfb09a5
commit c3ed54b838
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
4 changed files with 26 additions and 1 deletions

18
tools/move-map-to-blog.py Normal file
View file

@ -0,0 +1,18 @@
#!/usr/bin/env python3
# Simply move the map.png file to the blog output dir
# since it won't do so automatically for pillow creations.
import shutil
import os
import sys
if not os.getenv("QUARTO_PROJECT_RENDER_ALL"):
sys.exit(0)
q_output_dir = os.getenv("QUARTO_PROJECT_OUTPUT_DIR")
if not q_output_dir:
sys.exit(1)
src = "map.png"
shutil.copy(src, q_output_dir)