From 4d73d0ea13e555428c4184e9e8970b5c8fa44c87 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Mon, 18 Apr 2022 19:02:35 -0300 Subject: [PATCH] Add detection of new intelunk_ files to BIOSExtractor --- biostools/extractors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biostools/extractors.py b/biostools/extractors.py index e831d7c..d460e05 100644 --- a/biostools/extractors.py +++ b/biostools/extractors.py @@ -344,7 +344,7 @@ class BIOSExtractor(Extractor): # BIOS with LH5-compressed option ROMs. Check the files just in case. have_intelopt = have_intelbody = False for dest_dir_file in dest_dir_files: - if dest_dir_file[:9] == 'intelopt_': + if dest_dir_file[:9] in ('intelopt_', 'intelunk_'): have_intelopt = True elif dest_dir_file[:10] == 'intelbody_': have_intelbody = True