summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorcclauss <cclauss@me.com>2019-06-03 03:19:44 (GMT)
committerNed Deily <nad@python.org>2019-06-03 03:19:44 (GMT)
commitd337169156933eaf732566bf29eb968549ada5e8 (patch)
treead05862121bbed158359934077fac352b7aeb59d /Mac
parent01ee12ba35a333e8a6a25c4153c4a21838e9585c (diff)
downloadcpython-d337169156933eaf732566bf29eb968549ada5e8.zip
cpython-d337169156933eaf732566bf29eb968549ada5e8.tar.gz
cpython-d337169156933eaf732566bf29eb968549ada5e8.tar.bz2
Fix variable name copy/paste error in build-installer.py (GH-13038)
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/BuildScript/build-installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index fb43da5..60e28fe 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -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"))