From 62cb25293386ce6fd1947bae824d08e08799225d Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Wed, 19 Sep 2018 14:30:48 +0300 Subject: [PATCH] Fix website repository name --- scripts/changelog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/changelog.js b/scripts/changelog.js index e32541f4..01b8aefe 100644 --- a/scripts/changelog.js +++ b/scripts/changelog.js @@ -151,7 +151,7 @@ ${printList(items.documentation)}` } ${_.isEmpty(items.websiteDocumentation) ? "" : - `On the [website repository](https://github.com/thelounge/thelounge.chat): + `On the [website repository](https://github.com/thelounge/thelounge.github.io): ${printList(items.websiteDocumentation)}` } @@ -654,7 +654,7 @@ async function generateChangelogEntry(targetVersion) { items.milestone = await codeRepo.fetchMilestone(targetVersion); contributors = extractContributors(codeCommitsAndPullRequests); - const websiteRepo = new RepositoryFetcher(client, "thelounge.chat"); + const websiteRepo = new RepositoryFetcher(client, "thelounge.github.io"); items.websiteDocumentation = await websiteRepo.fetchCommitsAndPullRequestsSince("v" + previousVersion); }