Skip to content

Commit

Permalink
Merge pull request #175 from karszawa/fix/typo-publish-interal
Browse files Browse the repository at this point in the history
fix: typo publishInteral to publishInternal
  • Loading branch information
Quramy committed Dec 2, 2019
2 parents 9d7c875 + 41e6967 commit a0969ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class GcsPublisherPlugin extends AbstractPublisher implements PublisherPl
}

async publish(key: string) {
const { indexFile } = await this.publishInteral(key);
const { indexFile } = await this.publishInternal(key);
const reportUrl = indexFile && `https://storage.googleapis.com/${this.getBucketName()}/${this.resolveInBucket(key)}/${indexFile.path}`;
return { reportUrl };
}
Expand Down
2 changes: 1 addition & 1 deletion packages/reg-publish-s3-plugin/src/s3-publisher-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class S3PublisherPlugin extends AbstractPublisher implements PublisherPlu
}

publish(key: string) {
return this.publishInteral(key).then(({ indexFile }) => {
return this.publishInternal(key).then(({ indexFile }) => {
const reportUrl = indexFile && `https://${this.getBucketDomain()}/${this.resolveInBucket(key)}/${indexFile.path}`;
return { reportUrl };
});
Expand Down
2 changes: 1 addition & 1 deletion packages/reg-suit-util/src/cloud-storage-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export abstract class AbstractPublisher {
;
}

protected publishInteral(key: string) {
protected publishInternal(key: string) {
const progress = this.logger.getProgressBar();
return this.createList()
.then(list => {
Expand Down

0 comments on commit a0969ca

Please sign in to comment.