Skip to content

Commit 1f97669

Browse files
committed
Removes archive determinism change
1 parent a79f372 commit 1f97669

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server/lib/Archive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export function create_tar_archive(
104104
// Cast is required due to a bug with @types/node 18.X missing the parameter
105105
pipeline = stream.promises.pipeline(archive, passthrough, destination, { end: options.endDestStream } as any);
106106
for await (const entry of entries) {
107-
const entryStream = archive.entry({ name: entry.name, size: entry.size, mtime: new Date("1999-01-01") });
107+
const entryStream = archive.entry({ name: entry.name, size: entry.size });
108108
await stream.promises.pipeline(entry.data, entryStream);
109109
}
110110
archive.finalize();

0 commit comments

Comments
 (0)