From 686aecb36c6f56bf1de64ce9a847a46b2e0495d9 Mon Sep 17 00:00:00 2001 From: Rayyan Ansari Date: Wed, 31 Aug 2022 18:33:00 +0100 Subject: Make nested directories in mac-universal.py --- tools/mac-universal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') 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 -- cgit v1.2.3