We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ac4418 commit fb64621Copy full SHA for fb64621
1 file changed
Mac/BuildScript/build-installer.py
@@ -1523,6 +1523,10 @@ def buildDMG():
1523
shellQuote(os.path.join(WORKDIR, 'installer')),
1524
shellQuote(imagepath + ".tmp.dmg" )))
1525
1526
+ # Try to mitigate race condition in certain versions of macOS, e.g. 10.9,
1527
+ # when hdiutil fails with "Resource busy"
1528
+
1529
+ time.sleep(10)
1530
1531
if not os.path.exists(os.path.join(WORKDIR, "mnt")):
1532
os.mkdir(os.path.join(WORKDIR, "mnt"))
0 commit comments