This commit is contained in:
Michel Thomazo 2025-12-09 16:17:51 +01:00
parent 3aa54e9f05
commit bcbfd93f37
9 changed files with 19 additions and 13 deletions

View file

@ -9,6 +9,8 @@ a = Analysis(
# By default, pyinstaller doesn't include the .md files
('vibe/core/prompts/*.md', 'vibe/core/prompts'),
('vibe/core/tools/builtins/prompts/*.md', 'vibe/core/tools/builtins/prompts'),
# We also need to add all setup files
('vibe/setup/*', 'vibe/setup'),
# This is necessary because tools are dynamically called in vibe, meaning there is no static reference to those files
('vibe/core/tools/builtins/*.py', 'vibe/core/tools/builtins'),
('vibe/acp/tools/builtins/*.py', 'vibe/acp/tools/builtins'),