mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
17 lines
445 B
Batchfile
17 lines
445 B
Batchfile
@echo off
|
|
set archive=http://ftp.hosteurope.de/mirror/archive.mariadb.org//mariadb-%DB%/winx64-packages/mariadb-%DB%-winx64.msi
|
|
set last=http://mirror.i3d.net/pub/mariadb//mariadb-%DB%/winx64-packages/mariadb-%DB%-winx64.msi
|
|
|
|
curl -fLsS -o server.msi %archive%
|
|
|
|
if %ERRORLEVEL% == 0 goto end
|
|
|
|
curl -fLsS -o server.msi %last%
|
|
if %ERRORLEVEL% == 0 goto end
|
|
|
|
echo Failure Reason Given is %errorlevel%
|
|
exit /b %errorlevel%
|
|
|
|
:end
|
|
echo "File found".
|