1
0
mirror of https://github.com/heebijeebi/WinTango-Patcher.git synced 2024-06-22 05:21:56 +02:00

Adding Mirror compatibility to Updater

This commit is contained in:
heebijeebi
2016-12-13 17:18:39 +01:00
parent 97b90002be
commit 5235074d14
4 changed files with 7 additions and 1 deletions

View File

@@ -107,8 +107,10 @@ While 1
GUICtrlSetState($btnUpdate, $GUI_HIDE)
;Download Latest Version...
$sUrl = $AppVersionLatest[1]
$sUrlMirror = $AppVersionLatest[2]
$sDest = @TempDir & "\" & StringReplace($AppName, " ", "-") & "-LATEST.exe"
_DownloadLatestVersion($sUrl, $sDest)
If not FileExists($sDest) Then _DownloadLatestVersion($sUrlMirror, $sDest) ;retry with mirror
;...and install it
_RunDownload($sDest)
Exit