Merge pull request #3608 from github/koesie10/fix-supported-cli-version-warning

Fix incorrect supported CLI version warning
This commit is contained in:
Koen Vlaswinkel
2024-05-13 16:57:50 +02:00
committed by GitHub

View File

@@ -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;
}