From 26108c454d63abe82ebadc6e2a956e709743a6c3 Mon Sep 17 00:00:00 2001 From: Kay0u Date: Mon, 21 Dec 2020 17:21:08 +0100 Subject: [PATCH] fix upgrade parse --- lib/tests_coordination.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tests_coordination.sh b/lib/tests_coordination.sh index 0322fa5..d430fbf 100644 --- a/lib/tests_coordination.sh +++ b/lib/tests_coordination.sh @@ -146,7 +146,7 @@ parse_check_process() { commit="$(echo $LINE | grep -o "from_commit=.*" | awk -F= '{print $2}')" [ -n "$commit" ] || continue add_test "TEST_UPGRADE" "$commit" - done <<<$(grep "^upgrade=1" "$TEST_CONTEXT/check_process.tests_infos") + done < <(grep "^upgrade=1" "$TEST_CONTEXT/check_process.tests_infos") continue else @@ -166,7 +166,7 @@ parse_check_process() { do commit="$(echo $LINE | grep -o "from_commit=.*" | awk -F= '{print $2}')" add_test "TEST_UPGRADE" "$commit" - done <<<$(grep "^upgrade=1" "$TEST_CONTEXT/check_process.tests_infos") + done < <(grep "^upgrade=1" "$TEST_CONTEXT/check_process.tests_infos") # "Advanced" features