diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-02 20:39:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-02 20:39:38 -0700 |
commit | 74bede0d503d0508e9590f4ad65ee48b0ab93db6 (patch) | |
tree | 0c54f72c0ce3b271bc9774a95211a10413e2c860 /Mac | |
parent | [2.7] bpo-12639: msilib.Directory.start_component() fails if *keyfile* is not... (diff) | |
download | cpython-74bede0d503d0508e9590f4ad65ee48b0ab93db6.tar.gz cpython-74bede0d503d0508e9590f4ad65ee48b0ab93db6.tar.bz2 cpython-74bede0d503d0508e9590f4ad65ee48b0ab93db6.zip |
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-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 74d1e84f4a9..bf038797c5e 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")) |