refact: rename template

This commit is contained in:
monoid 2022-04-21 17:53:14 +09:00
parent 648653df59
commit b0a0d5b8a8
3 changed files with 2 additions and 2 deletions

View File

@ -29,12 +29,12 @@ async function readAndPrint(args: {
issues.sort((a, b) => a.number - b.number);
let print: string = "";
if (args.overall) {
print = await Eta.renderFile("overall.md.eta", {
print = await Eta.renderFile("overall.md", {
issues: issues
}) as string;
}
else {
print = await Eta.renderFile("sr.md.eta", {
print = await Eta.renderFile("specific.md", {
issues: issues
}) as string;
}