fix: assets missing in PyInstaller build

This commit is contained in:
Chidi Williams 2024-01-10 20:15:34 +00:00
parent d98c0666fd
commit a0ee06109b

View file

@ -24,6 +24,7 @@ datas += collect_data_files("whisper")
datas += [
("buzz/whisper.dll" if platform.system() == "Windows" else "buzz/libwhisper.*", ".")
]
datas += [("assets/*", "assets")]
datas += [
(file[1], os.path.dirname(file[1]))
for file in Tree("./locale", prefix="locale", excludes=["*.po"])