Compare commits
2 commits
17bd529115
...
6486356b6a
Author | SHA1 | Date | |
---|---|---|---|
|
6486356b6a | ||
|
4f747c5b79 |
|
@ -88,6 +88,7 @@ export async function insertToReadme(projectName: string, projectLink: string, o
|
||||||
var data: string = `> This was cloned from [${projectName}](${projectLink})\n`;
|
var data: string = `> This was cloned from [${projectName}](${projectLink})\n`;
|
||||||
if (existsSync(out + "README.md")) data = data + readFileSync(out + "README.md").toString();
|
if (existsSync(out + "README.md")) data = data + readFileSync(out + "README.md").toString();
|
||||||
writeFileSync(out + "README.md", data);
|
writeFileSync(out + "README.md", data);
|
||||||
|
await git.add("README.md")
|
||||||
await git.commit("Modify README.md", "README.md", {
|
await git.commit("Modify README.md", "README.md", {
|
||||||
"--author": '"BradBot1 <BradBot_1@email.com>"'
|
"--author": '"BradBot1 <BradBot_1@email.com>"'
|
||||||
});
|
});
|
||||||
|
|
|
@ -56,7 +56,10 @@ for (const forwardData of parsedData) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
const recipient = forward.createRecipient(recipientData.url, recipientData.humanName);
|
const recipient = forward.createRecipient(recipientData.url, recipientData.humanName);
|
||||||
if (recipient.hasOwnProperty("modifyReadme")) recipient.insertToReadme = !!recipientData.modifyReadme;
|
if (recipient.hasOwnProperty("modifyReadme")) {
|
||||||
|
recipient.insertToReadme = !!recipientData.modifyReadme;
|
||||||
|
console.log("Readme will be modified on recipient: " + recipient.humanName||recipient.url);
|
||||||
|
}
|
||||||
if (!recipientData.hasOwnProperty("authors")) {
|
if (!recipientData.hasOwnProperty("authors")) {
|
||||||
console.error("No authors provided for recipient: " + recipient.humanName||recipient.url);
|
console.error("No authors provided for recipient: " + recipient.humanName||recipient.url);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue