Remove ownerName and repositoryName from DistributionConfig

This commit is contained in:
Robert 2024-01-02 16:56:20 +00:00
Родитель 870874d7f3
Коммит b082455604
2 изменённых файлов: 2 добавлений и 8 удалений

Просмотреть файл

@ -512,9 +512,7 @@ class ExtensionSpecificDistributionManager {
}
private get distributionOwnerName(): string {
if (this.config.ownerName) {
return this.config.ownerName;
} else if (this.config.channel === "nightly") {
if (this.config.channel === "nightly") {
return NIGHTLY_DISTRIBUTION_OWNER_NAME;
} else {
return DEFAULT_DISTRIBUTION_OWNER_NAME;
@ -522,9 +520,7 @@ class ExtensionSpecificDistributionManager {
}
private get distributionRepositoryName(): string {
if (this.config.repositoryName) {
return this.config.repositoryName;
} else if (this.config.channel === "nightly") {
if (this.config.channel === "nightly") {
return NIGHTLY_DISTRIBUTION_REPOSITORY_NAME;
} else {
return DEFAULT_DISTRIBUTION_REPOSITORY_NAME;

Просмотреть файл

@ -119,8 +119,6 @@ export interface DistributionConfig {
updateCustomCodeQlPath: (newPath: string | undefined) => Promise<void>;
includePrerelease: boolean;
personalAccessToken?: string;
ownerName?: string;
repositoryName?: string;
channel: CLIChannel;
onDidChangeConfiguration?: Event<void>;
}