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