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
17 lines
297 B
Batchfile
17 lines
297 B
Batchfile
:: Usage:
|
|
:: call find-in-path.bat [reinstall|clean]
|
|
|
|
:: Initialize environment
|
|
call "%~dp0env.bat"
|
|
if errorlevel 1 goto error_env
|
|
|
|
set EnvMSYSPath=%EnvRootPath%\msys
|
|
|
|
call "%~dp0tools\prepare-msys.bat" %1
|
|
exit /B %ERRORLEVEL%
|
|
|
|
:error_env
|
|
echo Failed to initialize environment.
|
|
endlocal
|
|
exit /B 1
|