biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / jellyfin / no-strict-zip-timestamp.patch
blob07d54c1e138412e2bca60f6d297a0a999d47f5fd
1 diff --git a/build.py b/build.py
2 index 148441f3..2aa0f1ea 100755
3 --- a/build.py
4 +++ b/build.py
5 @@ -69,7 +69,9 @@ def zip_files(py_version: str, source: str, target: str, dev: bool) -> None:
6 """
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
12 + ) as z:
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)