From 0ce3d29a9bcfc041cdcd8e2b7f9c626fa2d1920a Mon Sep 17 00:00:00 2001 From: n1nj4sec Date: Fri, 17 Jun 2016 22:43:53 +0200 Subject: [PATCH] build dependency fix --- client/build_library_zip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/build_library_zip.py b/client/build_library_zip.py index 73f0bf99..8e09d20b 100644 --- a/client/build_library_zip.py +++ b/client/build_library_zip.py @@ -30,7 +30,7 @@ else: 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)) zf = zipfile.ZipFile(os.path.join("sources","resources","library%s.zip"%arch), mode='w', compression=zipfile.ZIP_DEFLATED)