mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-30 09:56:14 -05:00
17 lines
251 B
Batchfile
17 lines
251 B
Batchfile
|
@setlocal
|
||
|
|
||
|
@echo off
|
||
|
|
||
|
:: Initialize environment
|
||
|
call "%~dp0_env.bat"
|
||
|
|
||
|
if not exist "%MSYSPath%\bin\mingw-get.exe" exit /B 0
|
||
|
|
||
|
echo Update MSYS
|
||
|
pushd "%MSYSPath%\bin"
|
||
|
mingw-get.exe update
|
||
|
mingw-get.exe upgrade
|
||
|
popd
|
||
|
|
||
|
exit /B %ERRORLEVEL%
|