Fix --url exiting when provided parameters. Closes #1160
This commit is contained in:
parent
04b37ccf02
commit
2acc2f4f40
3
quickget
3
quickget
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue