Update install.sh
This commit is contained in:
parent
80679b8fe8
commit
2bc1ad16fd
1 changed files with 2 additions and 2 deletions
|
|
@ -189,7 +189,7 @@ getESD() {
|
|||
|
||||
local wFile="catalog.cab"
|
||||
|
||||
{ wget "$winCatalog" -O "$dir/$wFile" -q --no-check-certificate; rc=$?; } || :
|
||||
{ wget "$winCatalog" -O "$dir/$wFile" -q; rc=$?; } || :
|
||||
(( rc != 0 )) && error "Failed to download $winCatalog , reason: $rc" && return 1
|
||||
|
||||
cd "$dir"
|
||||
|
|
@ -249,7 +249,7 @@ downloadFile() {
|
|||
info "$msg" && html "$msg"
|
||||
/run/progress.sh "$iso" "Downloading $desc ([P])..." &
|
||||
|
||||
{ wget "$url" -O "$iso" -q --no-check-certificate --show-progress "$progress"; rc=$?; } || :
|
||||
{ wget "$url" -O "$iso" -q --show-progress "$progress"; rc=$?; } || :
|
||||
|
||||
fKill "progress.sh"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue