Merge pull request #1539 from smorrison/master
when mkdir of missing app folders, handle broken links properly
This commit is contained in:
+5
-1
@@ -438,7 +438,11 @@ def add_path_first(path):
|
|||||||
def try_mkdir(path):
|
def try_mkdir(path):
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
try:
|
try:
|
||||||
os.mkdir(path)
|
if os.path.islink(path):
|
||||||
|
# path is a broken link, try to mkdir the target of the link instead of the link itself.
|
||||||
|
os.mkdir(os.path.realpath(path))
|
||||||
|
else:
|
||||||
|
os.mkdir(path)
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
if e.strerror == 'File exists': # In case of race condition.
|
if e.strerror == 'File exists': # In case of race condition.
|
||||||
pass
|
pass
|
||||||
|
|||||||
Reference in New Issue
Block a user