Skip to content

Commit

Permalink
Fix variable name copy/paste error in build-installer.py (pythonGH-13038
Browse files Browse the repository at this point in the history
)
  • Loading branch information
cclauss authored and ned-deily committed Jun 3, 2019
1 parent 01ee12b commit d337169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mac/BuildScript/build-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1540,7 +1540,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"))
Expand Down

0 comments on commit d337169

Please sign in to comment.