From d337169156933eaf732566bf29eb968549ada5e8 Mon Sep 17 00:00:00 2001
From: cclauss <cclauss@me.com>
Date: Mon, 3 Jun 2019 05:19:44 +0200
Subject: Fix variable name copy/paste error in build-installer.py (GH-13038)

---
 Mac/BuildScript/build-installer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index fb43da5478f..60e28fee055 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"))
-- 
cgit v1.2.3-65-gdbad