@joebigelow / wix-1 / commits / 0ef9833f

Fix parsing variables' case sensitivity from BootstrapperApplicationData

Fixes 8769

Nir Bar committed Sep 24, 2024 at 11:29 UTC 0ef9833f8559d8630f452e1c7e07ca057bab4523
1 file changed +1 -1
src/api/burn/WixToolset.BootstrapperApplicationApi/OverridableVariables.cs
+1 -1
@@ -42,7 +42,7 @@ namespace WixToolset.BootstrapperApplicationApi
42 }
43 else
44 {
45 - string variablesValue = BootstrapperApplicationData.GetAttribute(commandLineNode, "Variables");
45 + string variablesValue = BootstrapperApplicationData.GetAttribute(commandLineNode, "VariableType");
46
47 if (variablesValue == null)
48 {