Skip to content

Commit

Permalink
fix misguiding debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzyhau committed Jan 19, 2023
1 parent 9e76522 commit 7b2908d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Hat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private void InitializeAndVerifyDependencies()
switch (dependency.Status)
{
case DependencyStatus.InvalidVersion:
issue = $"needs version >{dependency.Info.MinimumVersion}, found {dependency.DetectedVersion}";
issue = $"needs version >={dependency.Info.MinimumVersion}, found {dependency.DetectedVersion}";
break;
case DependencyStatus.InvalidNotFound:
issue = $"not found";
Expand Down

0 comments on commit 7b2908d

Please sign in to comment.