mirror of
https://github.com/elliotnunn/tbxi-patches.git
synced 2025-03-03 19:29:20 +00:00
Detect differently named Kauai parcels
Necessary for newer `tbxi` versions, which append the version and date to parcel names.
This commit is contained in:
parent
610ec9c8d9
commit
ac7f6424ed
@ -6,6 +6,7 @@ from os import path
|
||||
import shutil
|
||||
import os
|
||||
import struct
|
||||
import fnmatch
|
||||
|
||||
|
||||
src, cleanup = patch_common.get_src(desc='''
|
||||
@ -344,7 +345,7 @@ for (parent, folders, files) in os.walk(src):
|
||||
open(full, 'w').write(text)
|
||||
|
||||
elif filename == 'Parcelfile':
|
||||
if not path.exists(path.join(parent, 'kauai-ata.pef')):
|
||||
if not any(fnmatch.fnmatch(fn, 'kauai-ata*.pef') for fn in os.listdir(parent)):
|
||||
print('ROM lacks Kauai ATA driver (< ROM 9.1), patching it in') # the only known version
|
||||
shutil.copy(path.join(path.dirname(__file__), 'kauai-ata.pef'), parent)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user