We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba2f44b commit c7e2d69Copy full SHA for c7e2d69
extensions/ql-vscode/src/codeql-cli/distribution.ts
@@ -523,9 +523,8 @@ class ExtensionSpecificDistributionManager {
523
524
private get usingNightlyReleases(): boolean {
525
return (
526
- !this.config.ownerName &&
527
- !this.config.repositoryName &&
528
- this.config.channel === "nightly"
+ this.distributionOwnerName === NIGHTLY_DISTRIBUTION_OWNER_NAME &&
+ this.distributionRepositoryName === NIGHTLY_DISTRIBUTION_REPOSITORY_NAME
529
);
530
}
531
0 commit comments