Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix broken docker build from last modified attempt 3

Aria 68f698ae aa7cf4a9

+1 -1
+1 -1
remark-modified-time.mjs
··· 3 3 export function remarkModifiedTime() { 4 4 return (tree, file) => { 5 5 const filepath = file.history[0]; 6 - const result = import.meta.env.PUBLIC_COMMIT === "" ? "Unavailable" : execSync(`git log -1 --pretty="format:%cI" "${filepath}"`); 6 + const result = typeof import.meta.env.PUBLIC_COMMIT === "undefined" ? "Unavailable" : execSync(`git log -1 --pretty="format:%cI" "${filepath}"`); 7 7 file.data.astro.frontmatter.lastModified = result.toString(); 8 8 }; 9 9 }