From 764915f46da462021e827941e51158f38c23e0e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leonard?= Date: Thu, 5 Aug 2021 12:44:34 +0200 Subject: [PATCH 1/2] improve tests --- utils/test_doc/testdoc.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/utils/test_doc/testdoc.sh b/utils/test_doc/testdoc.sh index 498fdc724..1c20fd38e 100644 --- a/utils/test_doc/testdoc.sh +++ b/utils/test_doc/testdoc.sh @@ -7,10 +7,9 @@ ROOT_PATH=${PWD} TEST_PATH="./test_doc" mkdir ${TEST_PATH} -cp -rv . ${TEST_PATH} +for I in analyzers responders assets images AUTHORS AUTHORS docs *.md ; do cp -rv $I ${TEST_PATH} ; done cd ${TEST_PATH} gh repo clone TheHive-Project/doc-builder - doc-builder/build/Cortex-Neurons/generate.py @@ -23,4 +22,4 @@ cp -rv README.md docs/ mkdocs serve -a 0.0.0.0:8888 cd ${ROOT_PATH} -rm -rf ${TEST_PATH} \ No newline at end of file +rm -rf ${TEST_PATH} From 4201b79912d93a6beb52238c2342bf1484db461d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leonard?= Date: Thu, 5 Aug 2021 12:54:35 +0200 Subject: [PATCH 2/2] #1019 - PR merged, using original repo. --- analyzers/FileInfo/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/analyzers/FileInfo/Dockerfile b/analyzers/FileInfo/Dockerfile index 0a77e6f7c..3c3e54c1a 100644 --- a/analyzers/FileInfo/Dockerfile +++ b/analyzers/FileInfo/Dockerfile @@ -8,11 +8,8 @@ RUN apt install -y -q libboost-regex-dev \ libboost-system-dev libboost-filesystem-dev libssl-dev \ build-essential cmake \ git -#RUN git clone https://github.com/JusticeRage/Manalyze.git && \ -# Using fork with fix, waiting for the PR being validated on -# original repo -# PR: https://github.com/JusticeRage/Manalyze/pull/46 -RUN git clone https://github.com/jeromeleonard/Manalyze.git && \ +RUN git clone https://github.com/JusticeRage/Manalyze.git && \ +# RUN git clone https://github.com/jeromeleonard/Manalyze.git && \ cd Manalyze && \ cmake . && \ make -j5 && \