summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-05-01 22:45:59 -0700
committerNed Deily <nad@python.org>2018-05-02 01:45:59 -0400
commit50903bf011d8d3841c1874628f9ac20515256872 (patch)
treeecba18bfbde621e7e509bd8179127edd8077782e /Mac
parent1470e43076559d22518f2e8d704fa9426d2659dd (diff)
downloadcpython-git-50903bf011d8d3841c1874628f9ac20515256872.tar.gz
Mitigate macOS race condition in installer build (GH-6686) (GH-6687)
(cherry picked from commit fc6aa28bfd0502d994cec30bd3679b7def3be2af) Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/BuildScript/build-installer.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 68868d97a6..d2b04d163a 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -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"))