Fiz get_zsync() so it correctly falls back to web_get()
This commit is contained in:
parent
6b86e81e72
commit
eaae0f72e8
11
quickget
11
quickget
@ -639,12 +639,9 @@ function web_get() {
|
||||
|
||||
function zsync_get() {
|
||||
local DIR="${2}"
|
||||
local FILE=""
|
||||
local FILE="${1##*/}"
|
||||
local OUT=""
|
||||
local URL="${1}"
|
||||
local ZS=""
|
||||
|
||||
FILE="${URL##*/}"
|
||||
|
||||
if command -v zsync &>/dev/null; then
|
||||
if [ -n "${3}" ]; then
|
||||
@ -668,7 +665,11 @@ function zsync_get() {
|
||||
fi
|
||||
else
|
||||
echo "INFO: zsync not found, falling back to wget/aria2c"
|
||||
web_get "${ISO}" "${DIR}"
|
||||
if [ -n "${3}" ]; then
|
||||
web_get "${1}" "${2}" "${3}"
|
||||
else
|
||||
web_get "${1}" "${2}"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user