Merge pull request #3183 from github/robertbrignull/remove_releases_repo_config
Remove ownerName and repositoryName from DistributionConfig
This commit is contained in:
Коммит
b27d8a1000
|
@ -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>;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче