fontbuild: fix issue where building in parallel could cause some builds to fail because of a file system race condition

This commit is contained in:
Rasmus Andersson 2018-09-10 17:48:52 -07:00
parent 561b61c320
commit 98ca6bb9f0

View file

@ -8,6 +8,7 @@ from common import BASEDIR, VENVDIR, getGitHash, getVersion
import argparse
import datetime
import errno
import glyphsLib
import logging
import re
@ -38,8 +39,11 @@ def sighandler(signum, frame):
def mkdirs(path):
if not os.access(path, os.F_OK):
try:
os.makedirs(path)
except OSError as e:
if e.errno != errno.EEXIST:
raise # raises the error again
def fatal(msg):