deploy-ng: Fix error when build directory is missing

This commit is contained in:
Mitchell Stokes 2017-11-22 14:02:30 -08:00
parent a8d1e9444b
commit 949214834c

View File

@ -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