Commit 74bede0d authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub

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

(cherry picked from commit d3371691)
Co-authored-by: default avatarcclauss <cclauss@me.com>
parent bfc1f605
......@@ -1553,7 +1553,7 @@ def buildDMG():
print(" -- retrying hdiutil create")
time.sleep(5)
else:
raise RuntimeError("command failed: %s"%(commandline,))
raise RuntimeError("command failed: %s"%(cmd,))
if not os.path.exists(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