Make nested directories in mac-universal.py

This commit is contained in:
Rayyan Ansari 2022-08-31 18:33:00 +01:00
parent 21194375f8
commit 686aecb36c
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ def recursive_merge_binaries(src0, src1, dst):
continue
if os.path.isdir(newpath1):
os.mkdir(new_dst_path)
os.makedirs(new_dst_path)
recursive_merge_binaries(newpath0, newpath1, new_dst_path)
continue