From ecc80ba61356c2f0f2c2279b429e4cc0b4e51d3a Mon Sep 17 00:00:00 2001 From: Catena cyber <35799796+catenacyber@users.noreply.github.com> Date: Mon, 6 Jul 2020 22:35:00 +0200 Subject: [PATCH] [ndpi] excludes builds artifacts from ndpi project (#4077) --- projects/ndpi/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/ndpi/build.sh b/projects/ndpi/build.sh index 53ef13246..a48c042e9 100755 --- a/projects/ndpi/build.sh +++ b/projects/ndpi/build.sh @@ -28,4 +28,4 @@ cd ndpi sh autogen.sh ./configure --enable-fuzztargets make -ls fuzz/fuzz* | grep -v "\." | while read i; do cp $i $OUT/; done +ls fuzz/fuzz* | grep -v "\." | grep -v "with_main" | while read i; do cp $i $OUT/; done