Merge pull request #3183 from github/robertbrignull/remove_releases_repo_config

Remove ownerName and repositoryName from DistributionConfig
This commit is contained in:
Robert 2024-01-03 09:46:45 +00:00 коммит произвёл GitHub
Родитель 1ad20fa354 b082455604
Коммит b27d8a1000
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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>;
}