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`;
|
||||
if (existsSync(out + "README.md")) data = data + readFileSync(out + "README.md").toString();
|
||||
writeFileSync(out + "README.md", data);
|
||||
await git.add("README.md")
|
||||
await git.commit("Modify README.md", "README.md", {
|
||||
"--author": '"BradBot1 <BradBot_1@email.com>"'
|
||||
});
|
||||
|
|
|
@ -56,7 +56,10 @@ for (const forwardData of parsedData) {
|
|||
continue;
|
||||
}
|
||||
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")) {
|
||||
console.error("No authors provided for recipient: " + recipient.humanName||recipient.url);
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue