fix: Space after URL (#105)
This commit is contained in:
parent
73793dbcaa
commit
1cf2562354
|
@ -272,7 +272,7 @@ downloadImage() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{ wget "$url" -O "$iso" -q --no-check-certificate --show-progress "$progress"; rc=$?; } || :
|
{ wget "$url" -O "$iso" -q --no-check-certificate --show-progress "$progress"; rc=$?; } || :
|
||||||
(( rc != 0 )) && error "Failed to download $url, reason: $rc" && exit 60
|
(( rc != 0 )) && error "Failed to download $url , reason: $rc" && exit 60
|
||||||
|
|
||||||
[ ! -f "$iso" ] && return 1
|
[ ! -f "$iso" ] && return 1
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in New Issue