diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-03 03:39:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 03:39:38 (GMT) |
commit | 74bede0d503d0508e9590f4ad65ee48b0ab93db6 (patch) | |
tree | 0c54f72c0ce3b271bc9774a95211a10413e2c860 | |
parent | bfc1f605609218b9734d3cf3eab3531a2f4624e1 (diff) | |
download | cpython-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-x | Mac/BuildScript/build-installer.py | 2 |
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")) |