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 4f6363a commit dd15bfa
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 dd15bfa

Please sign in to comment.