This commit is contained in:
naielv
2025-08-15 17:10:58 +02:00
parent ba3cc7424d
commit a9b43a7f7d
4 changed files with 4 additions and 3 deletions

View File

@@ -31,6 +31,7 @@ shutil.copytree("assets","dist", dirs_exist_ok=True)
def replace_handles(string):
string = string.replace("%%PREFETCH%%", PREFETCH)
string = string.replace("%%VERSIONCO%%", VERSIONCO)
string = string.replace("%%TITLE%%", sys.argv[1])
string = string.replace("%%ASSETSJSON%%", json.dumps(ASSETS, ensure_ascii=False))
return string