summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-02 20:36:33 -0700
committerGitHub <noreply@github.com>2019-06-02 20:36:33 -0700
commit4a941e69822c042c1ef41ad34e89a6acd436490b (patch)
tree784347c8b68e7deeceb2ec58d4c9a2c06ee8c2ae /Mac
parent8766cb74e186d3820db0a855ccd780d6d84461f7 (diff)
downloadcpython-git-4a941e69822c042c1ef41ad34e89a6acd436490b.tar.gz
Fix variable name copy/paste error in build-installer.py (GH-13038)
(cherry picked from commit d337169156933eaf732566bf29eb968549ada5e8) Co-authored-by: cclauss <cclauss@me.com>
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 2e3a61ec71..3ee2fba826 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -1538,7 +1538,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"))