mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
WebHost: clear yaml template folder before populating it
This commit is contained in:
@@ -15,7 +15,13 @@ handled_in_js = {"start_inventory", "local_items", "non_local_items", "start_hin
|
|||||||
|
|
||||||
def create():
|
def create():
|
||||||
target_folder = local_path("WebHostLib", "static", "generated")
|
target_folder = local_path("WebHostLib", "static", "generated")
|
||||||
os.makedirs(os.path.join(target_folder, "configs"), exist_ok=True)
|
yaml_folder = os.path.join(target_folder, "configs")
|
||||||
|
os.makedirs(yaml_folder, exist_ok=True)
|
||||||
|
|
||||||
|
for file in os.listdir(yaml_folder):
|
||||||
|
full_path: str = os.path.join(yaml_folder, file)
|
||||||
|
if os.path.isfile(full_path):
|
||||||
|
os.unlink(full_path)
|
||||||
|
|
||||||
def dictify_range(option: typing.Union[Options.Range, Options.SpecialRange]):
|
def dictify_range(option: typing.Union[Options.Range, Options.SpecialRange]):
|
||||||
data = {}
|
data = {}
|
||||||
|
Reference in New Issue
Block a user