Skip to content

Commit 6357632

Browse files
committed
ignore existing dir
1 parent 72cb0ea commit 6357632

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

omv/engines/getnest.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ def install_nest(version):
2121
pypaths = get_paths()
2222
inform('Python lib info: %s'%(pypaths), indent=2, verbosity=1)
2323

24-
os.mkdir(nestpath)
24+
try:
25+
os.mkdir(nestpath)
26+
except:
27+
pass
2528

2629
with working_dir(nestpath):
2730
#version='2.10.0'

0 commit comments

Comments
 (0)