Extract constant for first std-compressed version

This commit is contained in:
Henry Mercer 2024-09-24 17:39:33 +01:00
parent 67b30f7c39
commit bc68dc9d95
6 changed files with 15 additions and 5 deletions

View file

@ -16,6 +16,7 @@ import * as api from "./api-client";
// these dependents.
import * as defaults from "./defaults.json";
import {
CODEQL_VERSION_ZSTD_BUNDLE,
CodeQLDefaultVersionInfo,
Feature,
FeatureEnablement,
@ -823,7 +824,7 @@ async function useZstdBundle(
): Promise<boolean> {
return (
tarSupportsZstd &&
semver.gte(cliVersion, "2.19.0") &&
semver.gte(cliVersion, CODEQL_VERSION_ZSTD_BUNDLE) &&
!!(await features.getValue(Feature.ZstdBundle))
);
}