mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04: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%
|