fix the updated time

This commit is contained in:
Gen 2024-03-22 00:04:26 -07:00
parent f279abbee0
commit b75c7793a4
No known key found for this signature in database
GPG key ID: CE5EAD50DD5E2278

View file

@ -3,6 +3,6 @@ const fs = require("fs");
let file = fs.readFileSync("index.html", "utf-8"); let file = fs.readFileSync("index.html", "utf-8");
file = file.replace( file = file.replace(
'<span class="last-updated"></span>', '<span class="last-updated"></span>',
new Date().toString(), new Date().toUTCString(),
); );
fs.writeFileSync("index.html", file); fs.writeFileSync("index.html", file);