aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRayyan Ansari <rayyan@ansari.sh>2022-08-31 18:33:00 +0100
committerRayyan Ansari <rayyan@ansari.sh>2022-08-31 18:33:00 +0100
commit686aecb36c6f56bf1de64ce9a847a46b2e0495d9 (patch)
tree2badede957fc07c2ca952b0aeecac8621d05a64b /tools
parent21194375f8d7d0d5c7f1905192be5d8ae045841c (diff)
Make nested directories in mac-universal.py
Diffstat (limited to 'tools')
-rwxr-xr-xtools/mac-universal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mac-universal.py b/tools/mac-universal.py
index c27267c..d22f52b 100755
--- a/tools/mac-universal.py
+++ b/tools/mac-universal.py
@@ -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