Forgot to create parent folder
This commit is contained in:
parent
08a124f8ee
commit
bf017975d8
3
make.py
3
make.py
|
@ -185,6 +185,9 @@ async def main(seam_texture: str = "block.dark_oak_planks"):
|
|||
border_texture = Image.open(TEXTURES_CACHE / f"{seam_texture}.png")
|
||||
|
||||
print("[ + ] Creating connected textures")
|
||||
(OUTPUT_PATH / "assets/seasonsextras/textures/block").mkdir(
|
||||
exist_ok=True, parents=True
|
||||
)
|
||||
for color in GLASS_COLORS:
|
||||
out_path = GLASS_OUTPUT_PATH / color
|
||||
out_path.mkdir(exist_ok=True)
|
||||
|
|
Loading…
Reference in New Issue