Mitigate macOS race condition in installer build (GH-6686) (#6689)
(cherry picked from commit fc6aa28bfd
)
Co-authored-by: Ned Deily <nad@python.org>
This commit is contained in:
parent
07ad02f62c
commit
5818f08962
|
@ -1530,6 +1530,10 @@ def buildDMG():
|
||||||
shellQuote(os.path.join(WORKDIR, 'installer')),
|
shellQuote(os.path.join(WORKDIR, 'installer')),
|
||||||
shellQuote(imagepath + ".tmp.dmg" )))
|
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")):
|
if not os.path.exists(os.path.join(WORKDIR, "mnt")):
|
||||||
os.mkdir(os.path.join(WORKDIR, "mnt"))
|
os.mkdir(os.path.join(WORKDIR, "mnt"))
|
||||||
|
|
Loading…
Reference in New Issue