win: autopatch: Support both dll/dl_ as targets

pull/665/head
Jai Luthra 11 months ago committed by GitHub
parent b368b4ea09
commit 9e20a7068f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -156,8 +156,11 @@ def make_patch(archive, *,
tmpdir,
arch_tgt,
sevenzip=sevenzip) as tgt:
with open(tgt, 'rb') as fo:
f = fo.read()
if tgt.endswith(".dll"):
with open(tgt, 'rb') as fo:
f = fo.read()
else:
f = expand(tgt, sevenzip=sevenzip)
offset = f.find(search)
if offset == -1:
raise PatternNotFoundException("Pattern not found.")

Loading…
Cancel
Save