From d73a0f253e5914ae2d9056927e30172dbed9be6e Mon Sep 17 00:00:00 2001 From: TheJoeCoder <joe@radialbog9.uk> Date: Sun, 7 Jul 2024 10:40:54 +0100 Subject: [PATCH] Fix destination copy on Python script --- build_site.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_site.py b/build_site.py index 41d220b..e6c8ce6 100644 --- a/build_site.py +++ b/build_site.py @@ -1,3 +1,5 @@ import shutil +import os +os.mkdir("public") shutil.copyfile("templates/index.html", "public/") shutil.copy("static/*", "public/") -- GitLab