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 1470e43 commit 50903bfCopy full SHA for 50903bf
1 file changed
Mac/BuildScript/build-installer.py
@@ -1524,6 +1524,10 @@ def buildDMG():
1524
shellQuote(os.path.join(WORKDIR, 'installer')),
1525
shellQuote(imagepath + ".tmp.dmg" )))
1526
1527
+ # Try to mitigate race condition in certain versions of macOS, e.g. 10.9,
1528
+ # when hdiutil fails with "Resource busy"
1529
+
1530
+ time.sleep(10)
1531
1532
if not os.path.exists(os.path.join(WORKDIR, "mnt")):
1533
os.mkdir(os.path.join(WORKDIR, "mnt"))
0 commit comments