fix: exit test runs correctly

This commit is contained in:
Martin Wimpress 2024-04-28 22:33:48 +01:00 committed by Martin Wimpress
parent ba5bac7a81
commit 26806f9604
1 changed files with 2 additions and 2 deletions

View File

@ -460,7 +460,6 @@ function list_url_all() {
show_url_result "${OS}" "${RELEASE}" "${EDITION}" "${URL}"
fi
done
exit 0
}
function list_check_all() {
@ -506,7 +505,6 @@ function list_check_all() {
fi
fi
done
exit 0
}
function os_support() {
@ -3458,6 +3456,7 @@ case "${1}" in
else
list_url_all "${1}"
fi
exit 0
;;
'--check'|'-c')
OPERATION="test"
@ -3474,6 +3473,7 @@ case "${1}" in
else
list_check_all "${1}"
fi
exit 0
;;
#TODO: Argument without dashes should be DEPRECATED!
'--list-csv'|'-lc'|'list'|'list_csv'|'lc')