diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-11-04 14:08:25 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-11-04 14:08:25 +0100 |
commit | 9075706714f44e6bc984154992746b5b03bb380b (patch) | |
tree | 06100186873e2639bb7c20866ee7f49bfec773f5 /scripts | |
parent | 1f6d1fbd67a2735d3e80680ce493841ba4b54488 (diff) |
nDPId-test: Set max buffer size for remote descriptors useful to test caching/buffering.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make-dist.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/make-dist.sh b/scripts/make-dist.sh index bb2823a90..974bfc5dd 100755 --- a/scripts/make-dist.sh +++ b/scripts/make-dist.sh @@ -19,7 +19,8 @@ fi git submodule update --init ./libnDPI NDPID_GIT_VERSION="$(git describe --tags)" cd ./libnDPI && \ - LIBNDPI_GIT_VERSION="$(git describe --tags)" + LIBNDPI_GIT_VERSION="$(git describe --tags)" && \ + printf '%s\n' "Creating $(realpath ./libnDPI-${LIBNDPI_GIT_VERSION}.tar)" && \ git archive --prefix="nDPId-${NDPID_GIT_VERSION}/libnDPI/" -o "../libnDPI-${LIBNDPI_GIT_VERSION}.tar" HEAD && \ cd .. git archive --prefix="nDPId-${NDPID_GIT_VERSION}/" -o "./nDPId-${NDPID_GIT_VERSION}.tar" HEAD |