diff --git a/scripts/generate_fs_list.ts b/scripts/generate_fs_list.ts index f5eaa2b4..9cc4d8ec 100644 --- a/scripts/generate_fs_list.ts +++ b/scripts/generate_fs_list.ts @@ -18,7 +18,7 @@ for await ( const s = await Deno.stat(fullPath); allFiles.push({ name: fullPath.substring(rootDir.length + 1), - lastModified: s.mtime!.getTime(), + lastModified: 0, contentType: mime.getType(fullPath) || "application/octet-stream", size: s.size, perm: "rw",