use os.makedirs to allow nested output directory

This commit is contained in:
Benjamin Wohlwend
2017-08-31 09:49:57 +02:00
parent 9faa8f8728
commit 0766cbd52f
+1 -1
View File
@@ -108,7 +108,7 @@ def main():
print_preamble(platform, build_options)
if not os.path.exists(output_dir):
os.mkdir(output_dir)
os.makedirs(output_dir)
if platform == 'linux':
cibuildwheel.linux.build(**build_options)