fixed public folder path in spec files

This commit is contained in:
uh_wot 2020-05-25 19:15:06 +02:00
parent dc07808be6
commit 737ce74a63
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ block_cipher = None
a = Analysis(['deemix_gui.py'],
binaries=[],
datas=[('webui/public', 'webui'), (f'{dirname(deemix.__file__)}/app/default.json','deemix/app')],
datas=[('webui/public', 'webui/public'), (f'{dirname(deemix.__file__)}/app/default.json','deemix/app')],
hiddenimports=['engineio.async_drivers.threading', 'pkg_resources.py2_warn'],
hookspath=[],
runtime_hooks=[],

View file

@ -6,7 +6,7 @@ block_cipher = None
a = Analysis(['server.py'],
binaries=[],
datas=[('webui/public', 'webui'), (f'{dirname(deemix.__file__)}/app/default.json','deemix/app')],
datas=[('webui/public', 'webui/public'), (f'{dirname(deemix.__file__)}/app/default.json','deemix/app')],
hiddenimports=['engineio.async_drivers.threading', 'pkg_resources.py2_warn'],
hookspath=[],
runtime_hooks=[],