Skip to content

Commit ee0a1af

Browse files
nirbarrobmen
authored andcommitted
Fix parsing variables' case sensitivity from BootstrapperApplicationData
Fixes 8769
1 parent b1e207c commit ee0a1af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/burn/WixToolset.BootstrapperApplicationApi/OverridableVariables.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static IOverridableVariables ParseFromXml(XPathNavigator root)
4242
}
4343
else
4444
{
45-
string variablesValue = BootstrapperApplicationData.GetAttribute(commandLineNode, "Variables");
45+
string variablesValue = BootstrapperApplicationData.GetAttribute(commandLineNode, "VariableType");
4646

4747
if (variablesValue == null)
4848
{

0 commit comments

Comments
 (0)