2
0
Эх сурвалжийг харах

deploy-ng: Fix error when build directory is missing

Mitchell Stokes 8 жил өмнө
parent
commit
949214834c

+ 1 - 1
direct/src/showutil/dist.py

@@ -159,7 +159,7 @@ class build_apps(distutils.core.Command):
 
         if os.path.exists(builddir):
             shutil.rmtree(builddir)
-        os.mkdir(builddir)
+        os.makedirs(builddir)
 
         path = sys.path[:]
         p3dwhl = None