From 08b9d275a8bfdf0e7285519ec148ab746c34bfc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 13 Mar 2017 12:26:05 +0100 Subject: [PATCH] unified-iso: Blacklist extra files metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The file is in each variant that has extra files, and would create a conflict when linking the files. Signed-off-by: Lubomír Sedlář --- pungi_utils/unified_isos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi_utils/unified_isos.py b/pungi_utils/unified_isos.py index f07a2bc7..4254ee15 100644 --- a/pungi_utils/unified_isos.py +++ b/pungi_utils/unified_isos.py @@ -93,7 +93,7 @@ class UnifiedISO(object): shutil.rmtree(self.temp_dir) def _link_tree(self, dir, variant, arch): - blacklist_files = [".treeinfo", ".discinfo", "boot.iso", "media.repo"] + blacklist_files = [".treeinfo", ".discinfo", "boot.iso", "media.repo", "extra_files.json"] blacklist_dirs = ["repodata"] for root, dirs, files in os.walk(dir):