Skip to content

Commit

Permalink
Fix parsing variables' case sensitivity from BootstrapperApplicationData
Browse files Browse the repository at this point in the history
Fixes 8769
  • Loading branch information
nirbar authored and robmen committed Dec 27, 2024
1 parent 701977a commit 0ef9833
Showing 1 changed file with 1 addition and 1 deletion.
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 0ef9833

Please sign in to comment.