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
1 changed files with 2 additions and 1 deletions

View File

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