Fix --url exiting when provided parameters. Closes #1160

This commit is contained in:
Liam 2024-05-04 15:04:14 -07:00 committed by Martin Wimpress
parent 04b37ccf02
commit 2acc2f4f40

View File

@ -3429,10 +3429,11 @@ case "${1}" in
for OS in $(os_support); do
(test_all "${OS}")
done
exit 0
elif [ -z "${2}" ]; then
test_all "${1}"
exit 0
fi
exit 0
;;
'--check'|'-c')
OPERATION="test"