From a0ee06109b25206b3eb5faf5367ce2f2b6756280 Mon Sep 17 00:00:00 2001 From: Chidi Williams Date: Wed, 10 Jan 2024 20:15:34 +0000 Subject: [PATCH] fix: assets missing in PyInstaller build --- Buzz.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/Buzz.spec b/Buzz.spec index 396b7bbcff..ea35b8a5ae 100644 --- a/Buzz.spec +++ b/Buzz.spec @@ -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"])