mirror of
https://github.com/dockur/windows.git
synced 2025-10-28 03:45:48 +00:00
Update mido.sh
This commit is contained in:
parent
e5d7458bc4
commit
f0423f2558
1 changed files with 4 additions and 3 deletions
|
|
@ -417,9 +417,10 @@ getESD() {
|
|||
|
||||
{ wget "$winCatalog" -O "$dir/$wFile" -q --timeout=30; rc=$?; } || :
|
||||
|
||||
(( rc == 4 )) && error "Failed to download $winCatalog , network failure!" && return 1
|
||||
(( rc == 8 )) && error "Failed to download $winCatalog , server issued an error response!" && return 1
|
||||
(( rc != 0 )) && error "Failed to download $winCatalog , reason: $rc" && return 1
|
||||
msg="Failed to download $winCatalog"
|
||||
(( rc == 4 )) && error "$msg , network failure!" && return 1
|
||||
(( rc == 8 )) && error "$msg , server issued an error response!" && return 1
|
||||
(( rc != 0 )) && error "$msg , reason: $rc" && return 1
|
||||
|
||||
cd "$dir"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue