mirror of
https://github.com/leminlimez/Nugget.git
synced 2025-04-08 04:23:05 +08:00
Initial commit
This commit is contained in:
15
compile.py
Normal file
15
compile.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from sys import platform
|
||||
|
||||
import PyInstaller.__main__
|
||||
|
||||
args = [
|
||||
'main_app.py',
|
||||
# '--hidden-import=ipsw_parser',
|
||||
'--hidden-import=zeroconf',
|
||||
'--hidden-import=zeroconf._utils.ipaddress',
|
||||
'--hidden-import=zeroconf._handlers.answers',
|
||||
'--onedir',
|
||||
'--name=CODENAME Nugget',
|
||||
]
|
||||
|
||||
PyInstaller.__main__.run(args)
|
||||
Reference in New Issue
Block a user