Tools: Fix deploy-mac.py to accept absolute paths

This commit is contained in:
Jeffrey Pfau 2015-06-06 00:48:08 -07:00
parent dbca794310
commit 0c6c6fdcbc
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,8 @@ def makedirs(path):
while split:
accum.append(split.pop())
newPath = joinPath(accum)
if newPath == '/':
continue
try:
os.mkdir(newPath)
except OSError as e: