From 1b2f005ab963587a5faa89c98abdac15cac8f4f3 Mon Sep 17 00:00:00 2001 From: Brett Date: Fri, 23 Aug 2024 21:19:07 -0500 Subject: [PATCH] Try updated main.spec for macOS --- main.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/main.spec b/main.spec index 6a8a32a..af0cef9 100644 --- a/main.spec +++ b/main.spec @@ -49,10 +49,17 @@ if platform.system() == 'Darwin': # macOS codesign_identity=None, entitlements_file=None, ) - app = BUNDLE( + coll = COLLECT( exe, a.binaries, a.datas, + strip=False, + upx=True, + upx_exclude=[], + name='server', + ) + app = BUNDLE( + coll, strip=True, name=f'{APP_NAME}.app', icon=None,