mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
fix upgrade parse
This commit is contained in:
parent
9663d9b478
commit
26108c454d
1 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ parse_check_process() {
|
||||||
commit="$(echo $LINE | grep -o "from_commit=.*" | awk -F= '{print $2}')"
|
commit="$(echo $LINE | grep -o "from_commit=.*" | awk -F= '{print $2}')"
|
||||||
[ -n "$commit" ] || continue
|
[ -n "$commit" ] || continue
|
||||||
add_test "TEST_UPGRADE" "$commit"
|
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
|
continue
|
||||||
else
|
else
|
||||||
|
@ -166,7 +166,7 @@ parse_check_process() {
|
||||||
do
|
do
|
||||||
commit="$(echo $LINE | grep -o "from_commit=.*" | awk -F= '{print $2}')"
|
commit="$(echo $LINE | grep -o "from_commit=.*" | awk -F= '{print $2}')"
|
||||||
add_test "TEST_UPGRADE" "$commit"
|
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
|
# "Advanced" features
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue