mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-15 02:44:20 -05:00
15 lines
263 B
Batchfile
15 lines
263 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
|
|
if not exist "%~dp0msys2\msys64" goto :EOF
|
|
|
|
set MSYS2SH=%~dp0msys2\msys64\usr\bin\sh
|
|
|
|
echo Update MSYS2
|
|
"%MSYS2SH%" -lc "yes | pacman --noconfirm -Syuu msys2-keyring"
|
|
"%MSYS2SH%" -lc "pacman --noconfirm -Su"
|
|
|
|
endlocal
|
|
goto :EOF
|