Tools: Contributor fixes (#4068)

pull/4074/head
Johan Hammar 2020-11-09 20:36:49 +01:00 committed by GitHub
parent 18e4f7ffe7
commit 9755a69be8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
const request = require('request');
const readmePath = `${__dirname}/../README.md`;
const readmePath = `${__dirname}/../../README.md`;
const { insertContentIntoFile } = require('./tool-utils.js');
async function gitHubContributors(page) {
@ -34,7 +34,7 @@ function contributorTable(contributors) {
const c = contributors[contributorIndex];
contributorIndex++;
const cell = `<img width="50" src="${c.avatar_url}"/></br>[${c.login}](${c.url})`;
const cell = `<img width="50" src="${c.avatar_url}"/></br>[${c.login}](${c.html_url})`;
row.push(cell);