Skip to content

Commit

Permalink
distro unix works on mac but app bundle fails silently, no logs in Co…
Browse files Browse the repository at this point in the history
…nslole.app. actuall app still fails via memgpt 0.5.5 import issues
  • Loading branch information
norton120 committed Dec 3, 2024
1 parent 3eec14c commit d75e8c0
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions installable_apps/letta.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ a = Analysis(
('venv/lib/python3.12/site-packages/pgserver/pginstall', 'pgserver/pginstall')
],
datas=[
('venv/lib/python3.12/site-packages/letta/server/static_files', 'letta/server/static_files'),
('venv/lib/python3.12/site-packages/letta/humans/examples', 'letta/humans/examples'),
('venv/lib/python3.12/site-packages/letta/personas/examples', 'letta/personas/examples'),
('venv/lib/python3.12/site-packages/letta/prompts/system', 'letta/prompts/system'),
Expand All @@ -29,26 +30,27 @@ pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
exclude_binaries=True,
name='letta',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['assets/letta.icns'],
)
coll = COLLECT(
app = BUNDLE(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='letta',
name='letta.app',
icon='assets/letta.icns',
bundle_identifier='com.letta.app',
)

0 comments on commit d75e8c0

Please sign in to comment.