heroweb/poc/template_fixer_do.py
2024-09-01 20:00:13 +02:00

11 lines
343 B
Python

from tools.templatefixer import new as templatefixer
import os
mypath="~/code/git.ourworld.tf/despiegk/heroweb/poc"
p = os.path.abspath(os.path.expanduser(mypath))
if not os.path.exists(p):
raise FileNotFoundError(f"The path does not exist: {p}")
fixer=templatefixer(f"{p}/example1", f"{p}/out",static_dir=f"{p}/static",reset=True)