From 4c2e4d2006bb3a42424ed4795b4fbef93cb06ff5 Mon Sep 17 00:00:00 2001 From: lovetox Date: Sun, 8 May 2022 14:41:00 +0200 Subject: [PATCH] Script: Ignore images.zip --- scripts/build_repository.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/build_repository.py b/scripts/build_repository.py index c41b2f8..4289cf8 100644 --- a/scripts/build_repository.py +++ b/scripts/build_repository.py @@ -49,6 +49,9 @@ def is_manifest_valid(manifest: Dict[str, Any]) -> bool: def iter_releases(release_folder: Path) -> Iterator[Dict[str, Any]]: for path in release_folder.rglob('*.zip'): with ZipFile(path) as release_zip: + if path.name == 'images.zip': + continue + log.info('Check path: %s', path) try: with release_zip.open('plugin-manifest.json') as file: manifest = json.load(file)