修复打包,未将资源打包进去
This commit is contained in:
parent
c69182d086
commit
4d09088226
@ -22,4 +22,4 @@ except:
|
||||
VERSION_LIST = {}
|
||||
VERSION_LIST_PATH = None
|
||||
|
||||
__version__ = "2.4.1"
|
||||
__version__ = "2.4.2"
|
||||
|
@ -38,7 +38,10 @@ a = Analysis(['tmp.py'],
|
||||
binaries=[],
|
||||
datas=[(r'{root_path}\\version_list.json', 'pywxdump'),
|
||||
(r'{root_path}/ui/templates/chat.html', 'pywxdump/ui/templates'),
|
||||
(r'{root_path}/ui/templates/index.html', 'pywxdump/ui/templates')],
|
||||
(r'{root_path}/ui/templates/index.html', 'pywxdump/ui/templates'),
|
||||
*[(f, 'pywxdump/ui/web/assets/') for f in glob.glob(r'{root_path}/ui/web/assets/*')],
|
||||
*[(f, 'pywxdump/ui/web/') for f in glob.glob(r'{root_path}/ui/web/*')],
|
||||
],
|
||||
hiddenimports={hidden_imports},
|
||||
hookspath=[],
|
||||
runtime_hooks=[],
|
||||
|
Loading…
Reference in New Issue
Block a user