From 706f33a909db833fa0806608e4e227889ca418c4 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Sat, 9 Nov 2024 19:06:56 +0700 Subject: [PATCH] Unzip product zip file ensuring no duplicates --- Scripts/gathering_files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Scripts/gathering_files.py b/Scripts/gathering_files.py index da35d15..8b2bea0 100644 --- a/Scripts/gathering_files.py +++ b/Scripts/gathering_files.py @@ -182,6 +182,7 @@ class gatheringFiles: zip_path = os.path.join(self.temporary_dir, product_name) + ".zip" self.fetcher.download_and_save_file(product_download_url, zip_path) + self.utils.extract_zip_file(zip_path) while True: zip_files = self.utils.find_matching_paths(os.path.join(self.temporary_dir, product_name), extension_filter=".zip")