11 lines
337 B
Python
11 lines
337 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}/in", f"{p}/out",static_dir=f"{p}/static",reset=True)
|