mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
617ed25a19
- Removed commandline switch "version" - Added MinGit for determining version information during compile process - Added sigcheck to determine version of the executable
20 lines
308 B
Batchfile
20 lines
308 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
|
|
if exist "%~dp0msys2\msys32" call :update 32
|
|
if exist "%~dp0msys2\msys64" call :update 64
|
|
|
|
goto :EOF
|
|
|
|
:update
|
|
set MSYSSH=%~dp0msys2\msys%~1\usr\bin\sh
|
|
|
|
echo Update MSYS2 %~1
|
|
"%MSYSSH%" -lc "pacman -Sy"
|
|
"%MSYSSH%" -lc "pacman --noconfirm -Su"
|
|
|
|
:exit
|
|
endlocal
|
|
goto :EOF
|