From d1710b68872f1cf34cd14aad27f8e1d545485776 Mon Sep 17 00:00:00 2001 From: "Matthieu Baerts (NGI0)" Date: Wed, 17 Jul 2024 17:13:42 +0200 Subject: [PATCH] packetdrill: only switch to mptcp dir if needed So the upstream Packetdrill version can be used if needed. Signed-off-by: Matthieu Baerts (NGI0) --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 837e236..ed32d28 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -602,10 +602,10 @@ build_packetdrill() { local old_pwd kversion branch rc=0 ./configure _make || rc=${?} - cd ../mptcp if [ "${INPUT_PACKETDRILL_NO_MORE_TOLERANCE}" = "1" ]; then printinfo "Packetdrill: not modifying the tolerance" else + cd ../mptcp # reduce debug logs: too much set_trace_off @@ -628,8 +628,8 @@ build_packetdrill() { local old_pwd kversion branch rc=0 done set_trace_on + cd "${old_pwd}" fi - cd "${old_pwd}" log_section_end