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,
|
debug=False,
|
||||||
strip=False,
|
strip=False,
|
||||||
upx=False,
|
upx=False,
|
||||||
icon='data/ER.ico',
|
icon='../data/ER.ico',
|
||||||
console=is_win )
|
console=is_win )
|
||||||
coll = COLLECT(exe,
|
coll = COLLECT(exe,
|
||||||
a.binaries,
|
a.binaries,
|
||||||
|
@ -35,5 +35,5 @@ coll = COLLECT(exe,
|
||||||
name='EntranceRandomizer')
|
name='EntranceRandomizer')
|
||||||
app = BUNDLE(coll,
|
app = BUNDLE(coll,
|
||||||
name ='EntranceRandomizer.app',
|
name ='EntranceRandomizer.app',
|
||||||
icon = 'data/ER.icns',
|
icon = '../data/ER.icns',
|
||||||
bundle_identifier = None)
|
bundle_identifier = None)
|
||||||
|
|
Loading…
Reference in New Issue