Commit d3371691 authored by cclauss's avatar cclauss Committed by Ned Deily

Fix variable name copy/paste error in build-installer.py (GH-13038)

parent 01ee12ba
...@@ -1540,7 +1540,7 @@ def buildDMG(): ...@@ -1540,7 +1540,7 @@ def buildDMG():
print(" -- retrying hdiutil create") print(" -- retrying hdiutil create")
time.sleep(5) time.sleep(5)
else: else:
raise RuntimeError("command failed: %s"%(commandline,)) raise RuntimeError("command failed: %s"%(cmd,))
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"))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment