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 26, 2024
1 parent dd2fe20 commit 2e20766
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 2e20766

Please sign in to comment.