make dist

* fixed run_tests.sh file check bug, CI compat
 * updated results due to libnDPI submodule update

Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
This commit is contained in:
Toni Uhlig
2021-06-08 15:57:13 +02:00
parent a41ddafa88
commit 7daeee141d
8 changed files with 489 additions and 463 deletions

View File

@@ -1,7 +1,6 @@
#!/usr/bin/env bash
set -e
set -x
LOCKFILE="$(realpath "${0}").lock"
touch "${LOCKFILE}"
@@ -11,8 +10,12 @@ flock -x -n 42 || {
exit 1;
}
set -x
cd "$(dirname "${0}")/.."
git submodule update --init ./libnDPI
if [ -d ./.git ]; then
git submodule update --init ./libnDPI
fi
cd ./libnDPI
DEST_INSTALL="${DEST_INSTALL:-$(realpath ./install)}"