mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-12 09:24:26 -05:00
20 lines
401 B
Batchfile
20 lines
401 B
Batchfile
|
setlocal
|
||
|
|
||
|
echo.
|
||
|
echo === webui
|
||
|
echo.
|
||
|
title Build webui
|
||
|
|
||
|
if not exist "%RsWebuiPath%" (
|
||
|
echo Checking out webui source into %RsWebuiPath%
|
||
|
%EnvMSYS2Cmd% "pacman --noconfirm --needed -S git"
|
||
|
git clone https://github.com/RetroShare/RSNewWebUI.git "%RsWebuiPath%"
|
||
|
) else (
|
||
|
echo Webui source found at %RsWebuiPath%
|
||
|
)
|
||
|
|
||
|
pushd "%RsWebuiPath%\webui-src\make-src"
|
||
|
%EnvMSYS2Cmd% "sh build.sh"
|
||
|
popd
|
||
|
|
||
|
endlocal
|