Fix breakage from PyInstaller 3.5's release
This commit is contained in:
parent
390bd1f561
commit
54c53ea07e
|
@ -24,7 +24,7 @@ exe = EXE(pyz,
|
|||
debug=False,
|
||||
strip=False,
|
||||
upx=False,
|
||||
icon='data/ER.ico',
|
||||
icon='../data/ER.ico',
|
||||
console=is_win )
|
||||
coll = COLLECT(exe,
|
||||
a.binaries,
|
||||
|
@ -35,5 +35,5 @@ coll = COLLECT(exe,
|
|||
name='EntranceRandomizer')
|
||||
app = BUNDLE(coll,
|
||||
name ='EntranceRandomizer.app',
|
||||
icon = 'data/ER.icns',
|
||||
icon = '../data/ER.icns',
|
||||
bundle_identifier = None)
|
||||
|
|
Loading…
Reference in New Issue