From 1ef884ae4e646e6c3a47c8f685e3f8cd4a431ea4 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Mon, 23 Aug 2021 09:43:46 -0400 Subject: [PATCH] Agent: Add pyinstaller hook for post_breach package --- .../pyinstaller_hooks/hook-infection_monkey.post_breach.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 monkey/infection_monkey/pyinstaller_hooks/hook-infection_monkey.post_breach.py diff --git a/monkey/infection_monkey/pyinstaller_hooks/hook-infection_monkey.post_breach.py b/monkey/infection_monkey/pyinstaller_hooks/hook-infection_monkey.post_breach.py new file mode 100644 index 000000000..1deab1ee4 --- /dev/null +++ b/monkey/infection_monkey/pyinstaller_hooks/hook-infection_monkey.post_breach.py @@ -0,0 +1,3 @@ +from PyInstaller.utils.hooks import collect_data_files + +datas = collect_data_files("infection_monkey.post_breach", include_py_files=False)