1 diff --git a/build.py b/build.py
2 index 148441f3..2aa0f1ea 100755
5 @@ -69,7 +69,9 @@ def zip_files(py_version: str, source: str, target: str, dev: bool) -> None:
7 archive_name = "plugin.video.jellyfin+{}.zip".format(py_version)
9 - with zipfile.ZipFile("{}/{}".format(target, archive_name), "w") as z:
10 + with zipfile.ZipFile(
11 + "{}/{}".format(target, archive_name), "w", strict_timestamps=False
13 for root, dirs, files in os.walk(args.source):
14 for filename in filter(file_filter, files):
15 file_path = os.path.join(root, filename)