From 23eb37fc35739bd5fce9b6927a0baa3038b0a042 Mon Sep 17 00:00:00 2001
From: matograine <matograine@zaclys.net>
Date: Mon, 25 Apr 2022 20:04:00 +0200
Subject: [PATCH] fix landing page build

---
 build.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/build.py b/build.py
index 86d9350..e3fc8af 100644
--- a/build.py
+++ b/build.py
@@ -127,8 +127,10 @@ if __name__ == "__main__":
             with open(target, "r") as f:
                 content = f.read()
             content = content.replace("../", "./")
-            content = content.replace("license.html", lang + "/license.html")
+            content = content.replace("licence.html", lang + "/licence.html")
             content = content.replace("questions.html", lang + "/questions.html")
+            content = content.replace("strings.js", lang + "/strings.js")
+            content = content.replace("./logo_g.png", lang + "/logo_g.png")
             # overwrite file
             with open(target, "w") as f:
                 f.write(content)
-- 
GitLab