build dependency fix

This commit is contained in:
n1nj4sec 2016-06-17 22:43:53 +02:00
parent 1dc49db26a
commit 0ce3d29a9b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ else:
all_dependencies=list(set([x.split(".")[0] for x in sys.modules.iterkeys()])) all_dependencies=list(set([x.split(".")[0] for x in sys.modules.iterkeys()]))
all_dependencies.extend(["win32file", "win32pipe", "Crypto", "yaml", "_yaml", "rpyc", "network"]) all_dependencies.extend(["win32file", "win32pipe", "Crypto", "yaml", "_yaml", "rpyc", "network", "pyasn1", "rsa"])
all_dependencies=list(set(all_dependencies)) all_dependencies=list(set(all_dependencies))
zf = zipfile.ZipFile(os.path.join("sources","resources","library%s.zip"%arch), mode='w', compression=zipfile.ZIP_DEFLATED) zf = zipfile.ZipFile(os.path.join("sources","resources","library%s.zip"%arch), mode='w', compression=zipfile.ZIP_DEFLATED)