Skip to content

Commit

Permalink
Changing "or-not" to "or" on Version Condition
Browse files Browse the repository at this point in the history
File should usually be replaced if it is lower the target version
  • Loading branch information
Guacam-Ole committed May 2, 2016
1 parent 91c2dc1 commit 57be08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FeedBuilder/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ private void Build()
if (chkVersion.Checked && !string.IsNullOrEmpty(fileInfoEx.FileVersion))
{
cond = doc.CreateElement("FileVersionCondition");
cond.SetAttribute("type", "or-not");
cond.SetAttribute("type", "or");
cond.SetAttribute("what", "below");
cond.SetAttribute("version", fileInfoEx.FileVersion);
conds.AppendChild(cond);
Expand Down

0 comments on commit 57be08e

Please sign in to comment.