Skip to content

Commit af214b1

Browse files
cwrodDouglas Densmore
authored andcommitted
Modified .spec to bundle app correctly
1 parent 8961e23 commit af214b1

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

DAFD_GUI.spec

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,15 @@ pyz = PYZ(a.pure, a.zipped_data,
1818
cipher=block_cipher)
1919
exe = EXE(pyz,
2020
a.scripts,
21-
exclude_binaries=True,
21+
a.binaries,
22+
a.zipfiles,
23+
a.datas,
2224
name='DAFD_GUI',
2325
debug=False,
2426
strip=False,
2527
upx=True,
26-
console=True )
27-
coll = COLLECT(exe,
28-
a.binaries,
29-
a.zipfiles,
30-
a.datas,
31-
strip=False,
32-
upx=True,
33-
name='DAFD_GUI')
28+
console=False )
29+
app = BUNDLE(exe,
30+
name='DAFD_GUI.app',
31+
icon=None,
32+
bundle_identifier=None)

0 commit comments

Comments
 (0)