Added the attack_data folder to the datas

This commit is contained in:
Shay Nehmad 2020-04-16 19:09:42 +03:00
parent d50c339629
commit ef3a71afe5
1 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# -*- mode: python -*- # -*- mode: python -*-
import os import os
import platform import platform
import sys
__author__ = 'itay.mizeretz' __author__ = 'itay.mizeretz'
@ -9,15 +9,20 @@ block_cipher = None
def main(): def main():
# These data files and folders will be included in the bundle.
# The format of the tuples is (src, dest_dir). See https://pythonhosted.org/PyInstaller/spec-files.html#adding-data-files
added_datas = [
("../common/BUILD", "/common"),
("../monkey_island/cc/services/attack/attack_data", "/monkey_island/cc/services/attack/attack_data")
]
a = Analysis(['cc/main.py'], a = Analysis(['cc/main.py'],
pathex=['..'], pathex=['..'],
hiddenimports=get_hidden_imports(), hiddenimports=get_hidden_imports(),
hookspath=None, hookspath=None,
runtime_hooks=None, runtime_hooks=None,
binaries=None, binaries=None,
datas=[ datas=added_datas,
("../common/BUILD", "/common")
],
excludes=None, excludes=None,
win_no_prefer_redirects=None, win_no_prefer_redirects=None,
win_private_assemblies=None, win_private_assemblies=None,