Skip to content

Commit

Permalink
Fix parsing variables' case sensitivity from BootstrapperApplicationData
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbar committed Sep 24, 2024
1 parent d39ef1e commit 5aeab8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/burn/WixToolset.Mba.Core/OverridableVariables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static IOverridableVariables ParseFromXml(XPathNavigator root)
}
else
{
string variablesValue = BootstrapperApplicationData.GetAttribute(commandLineNode, "Variables");
string variablesValue = BootstrapperApplicationData.GetAttribute(commandLineNode, "VariableType");

if (variablesValue == null)
{
Expand Down

0 comments on commit 5aeab8a

Please sign in to comment.