mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
a35985e3fc
- Added build script - Added build-installer script - Added pack script - Added gitlog script - Use shadow build
16 lines
253 B
Batchfile
16 lines
253 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
|
|
set MSYSPath=%~dp0msys
|
|
|
|
if not exist "%MSYSPath%\bin\mingw-get.exe" echo MSYS is not installed& exit /B 0
|
|
|
|
echo Update MSYS
|
|
pushd "%MSYSPath%\bin"
|
|
mingw-get.exe update
|
|
mingw-get.exe upgrade
|
|
popd
|
|
|
|
exit /B %ERRORLEVEL%
|