mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
deploy-ng: Fix error when build directory is missing
This commit is contained in:
parent
a8d1e9444b
commit
949214834c
@ -159,7 +159,7 @@ class build_apps(distutils.core.Command):
|
|||||||
|
|
||||||
if os.path.exists(builddir):
|
if os.path.exists(builddir):
|
||||||
shutil.rmtree(builddir)
|
shutil.rmtree(builddir)
|
||||||
os.mkdir(builddir)
|
os.makedirs(builddir)
|
||||||
|
|
||||||
path = sys.path[:]
|
path = sys.path[:]
|
||||||
p3dwhl = None
|
p3dwhl = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user