Mitigate macOS race condition in installer build (GH-6686) (GH-6687)

(cherry picked from commit fc6aa28bfd)

Co-authored-by: Ned Deily <nad@python.org>
This commit is contained in:
Miss Islington (bot) 2018-05-01 22:45:59 -07:00 committed by Ned Deily
parent 1470e43076
commit 50903bf011
1 changed files with 4 additions and 0 deletions

View File

@ -1524,6 +1524,10 @@ def buildDMG():
shellQuote(os.path.join(WORKDIR, 'installer')),
shellQuote(imagepath + ".tmp.dmg" )))
# Try to mitigate race condition in certain versions of macOS, e.g. 10.9,
# when hdiutil fails with "Resource busy"
time.sleep(10)
if not os.path.exists(os.path.join(WORKDIR, "mnt")):
os.mkdir(os.path.join(WORKDIR, "mnt"))