mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 01:49:42 -06:00
Make nested directories in mac-universal.py
This commit is contained in:
@ -75,7 +75,7 @@ def recursive_merge_binaries(src0, src1, dst):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
if os.path.isdir(newpath1):
|
if os.path.isdir(newpath1):
|
||||||
os.mkdir(new_dst_path)
|
os.makedirs(new_dst_path)
|
||||||
recursive_merge_binaries(newpath0, newpath1, new_dst_path)
|
recursive_merge_binaries(newpath0, newpath1, new_dst_path)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user