summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-03 03:39:38 (GMT)
committerGitHub <noreply@github.com>2019-06-03 03:39:38 (GMT)
commit74bede0d503d0508e9590f4ad65ee48b0ab93db6 (patch)
tree0c54f72c0ce3b271bc9774a95211a10413e2c860
parentbfc1f605609218b9734d3cf3eab3531a2f4624e1 (diff)
downloadcpython-74bede0d503d0508e9590f4ad65ee48b0ab93db6.zip
cpython-74bede0d503d0508e9590f4ad65ee48b0ab93db6.tar.gz
cpython-74bede0d503d0508e9590f4ad65ee48b0ab93db6.tar.bz2
Fix variable name copy/paste error in build-installer.py (GH-13038)
(cherry picked from commit d337169156933eaf732566bf29eb968549ada5e8) Co-authored-by: cclauss <cclauss@me.com>
-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 74d1e84..bf03879 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -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"))