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 -*-
import os
import platform
import sys
__author__ = 'itay.mizeretz'
@ -9,15 +9,20 @@ block_cipher = None
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'],
pathex=['..'],
hiddenimports=get_hidden_imports(),
hookspath=None,
runtime_hooks=None,
binaries=None,
datas=[
("../common/BUILD", "/common")
],
datas=added_datas,
excludes=None,
win_no_prefer_redirects=None,
win_private_assemblies=None,