mirror of https://github.com/KLayout/klayout.git
os.makedirs has no exist_ok in python2
This commit is contained in:
parent
96be601da9
commit
b995c67a26
|
|
@ -669,7 +669,7 @@ def DeployBinariesForBundle():
|
||||||
# binary
|
# binary
|
||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
for piDir in [ "db_plugins", "lay_plugins" ]:
|
for piDir in [ "db_plugins", "lay_plugins" ]:
|
||||||
os.makedirs( os.path.join( targetDirM, piDir ), exist_ok = True )
|
os.makedirs( os.path.join( targetDirM, piDir ))
|
||||||
dynamicLinkLibs = glob.glob( os.path.join( MacBinDir, piDir, "*.dylib" ) )
|
dynamicLinkLibs = glob.glob( os.path.join( MacBinDir, piDir, "*.dylib" ) )
|
||||||
for item in dynamicLinkLibs:
|
for item in dynamicLinkLibs:
|
||||||
if os.path.isfile(item) and not os.path.islink(item):
|
if os.path.isfile(item) and not os.path.islink(item):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue