release: include resources PyInstaller doesn't record in spec files.
This commit is contained in:
parent
c098ce8876
commit
6d70b790df
|
@ -16,6 +16,10 @@ a.datas += Tree(
|
|||
"./libmproxy/onboarding/static",
|
||||
prefix="libmproxy/onboarding/static"
|
||||
)
|
||||
a.datas += Tree(
|
||||
"../venv.mitmproxy/lib/python2.7/site-packages/cryptography/hazmat/bindings/openssl/src",
|
||||
prefix = "cryptography/hazmat/bindings/openssl/src"
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
|
|
|
@ -16,6 +16,10 @@ a.datas += Tree(
|
|||
"./libmproxy/onboarding/static",
|
||||
prefix="libmproxy/onboarding/static"
|
||||
)
|
||||
a.datas += Tree(
|
||||
"../venv.mitmproxy/lib/python2.7/site-packages/cryptography/hazmat/bindings/openssl/src",
|
||||
prefix = "cryptography/hazmat/bindings/openssl/src"
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
|
|
|
@ -24,6 +24,10 @@ a.datas += Tree(
|
|||
"./libmproxy/web/static",
|
||||
prefix="libmproxy/web/static"
|
||||
)
|
||||
a.datas += Tree(
|
||||
"../venv.mitmproxy/lib/python2.7/site-packages/cryptography/hazmat/bindings/openssl/src",
|
||||
prefix = "cryptography/hazmat/bindings/openssl/src"
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
|
|
Loading…
Reference in New Issue