We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4140303 commit 37b2e42Copy full SHA for 37b2e42
extensions/ql-vscode/src/config.ts
@@ -112,7 +112,7 @@ const DISTRIBUTION_CHANGE_SETTINGS = [
112
PERSONAL_ACCESS_TOKEN_SETTING,
113
];
114
115
-export type CLIChannel = "released" | "nightly";
+export type CLIChannel = "stable" | "nightly";
116
117
export interface DistributionConfig {
118
readonly customCodeQlPath?: string;
@@ -283,9 +283,7 @@ export class DistributionConfigListener
283
}
284
285
public get channel(): CLIChannel {
286
- return CLI_CHANNEL_SETTING.getValue() === "nightly"
287
- ? "nightly"
288
- : "released";
+ return CLI_CHANNEL_SETTING.getValue() === "nightly" ? "nightly" : "stable";
289
290
291
protected handleDidChangeConfiguration(e: ConfigurationChangeEvent): void {
0 commit comments