include property files in pyinstaller executable

This commit is contained in:
Yax 2024-09-22 19:42:53 +02:00
parent fe21b9ac0e
commit dc776881e4

View file

@ -5,7 +5,7 @@ a = Analysis(
['src/stacosys/run.py'],
pathex=['src'],
binaries=[],
datas=[('src/stacosys/interface/templates/*.html', 'src/stacosys/interface/templates/')],
datas=[('src/stacosys/interface/templates/*.html', 'stacosys/interface/templates/'), ('src/stacosys/i18n/*.properties', 'stacosys/i18n/')],
hiddenimports=[],
hookspath=[],
hooksconfig={},