Skip to content

Commit

Permalink
Fix last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
m417z committed Nov 24, 2023
1 parent db477f7 commit 33aa3b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,10 +320,10 @@ async function main() {

fs.writeFileSync('updates.atom', generateRssFeed());

// const srcPath = 'public';
// for (const file of fs.readdirSync(srcPath, { withFileTypes: true })) {
// fs.renameSync(path.join(srcPath, file.name), file.name);
// }
const srcPath = 'public';
for (const file of fs.readdirSync(srcPath, { withFileTypes: true })) {
fs.renameSync(path.join(srcPath, file.name), file.name);
}
}

main();

0 comments on commit 33aa3b8

Please sign in to comment.