Compare commits

...

2 Commits

Author SHA1 Message Date
Annie Sun fbf3c5001d Revert "debug"
continuous-integration/drone/push Build is failing Details
This reverts commit a2ee32f961.
2023-02-15 17:20:45 -05:00
Annie Sun 9754d0a1ef replace exec blurbs 2023-02-15 17:20:04 -05:00
1 changed files with 0 additions and 2 deletions

View File

@ -54,11 +54,9 @@ async function getExec(exec: Exec) {
(exec.person.lastName ? `-${exec.person.lastName}` : "");
try {
console.log(path.join(EXECS_PATH, `${expectedFileName}${FILETYPE}`));
const raw = await readFile(
path.join(EXECS_PATH, `${expectedFileName}${FILETYPE}`)
);
console.log(matter(raw).content);
({ content, data: metadata } = matter(raw));
const image = await getMemberImagePath(metadata.name as string);