Skip to content

Commit

Permalink
Merge pull request #3608 from github/koesie10/fix-supported-cli-versi…
Browse files Browse the repository at this point in the history
…on-warning

Fix incorrect supported CLI version warning
  • Loading branch information
koesie10 authored May 13, 2024
2 parents 9d6b4e8 + 47ae0fe commit 616b613
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions extensions/ql-vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,9 @@ export async function activate(
}

if (
CliVersionConstraint.OLDEST_SUPPORTED_CLI_VERSION.compare(ver.version) <
0
CliVersionConstraint.OLDEST_SUPPORTED_CLI_VERSION.compare(
ver.version,
) <= 0
) {
return;
}
Expand Down

0 comments on commit 616b613

Please sign in to comment.