Skip to content

Commit

Permalink
fix: dotnet version check always fail (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
blackchoey authored Jan 20, 2025
1 parent 59e5bc7 commit 5914868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/dotnetUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export namespace dotnetUtils {
for (const version of versions) {
const versionNumber = version.split(' ')[1];
if (compareVersion(versionNumber, minVersion) >= 0) {
return false;
return true;
}
}
} catch (error) {
Expand Down

0 comments on commit 5914868

Please sign in to comment.