Add LpcCrOSEC.bin

This commit is contained in:
Stephen Horvath
2025-09-05 19:46:25 +10:00
parent 5f514ab6bb
commit ad099ff5e7
4 changed files with 5 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
from PyInstaller.utils.hooks import collect_data_files
import os
datas = [('LpcCrOSEC.bin', '.')] if os.path.exists('LpcCrOSEC.bin') else []
datas = [('LpcCrOSEC.bin', '.')] if os.name == 'nt' and os.path.exists('LpcCrOSEC.bin') else []
datas += collect_data_files('yafi')