2020-05-06 22:46:40 +03:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
cd /D "%~dp0"
|
|
|
|
|
|
|
|
call git config --global user.name "WinRTC"
|
|
|
|
if errorlevel 1 goto :error
|
|
|
|
|
|
|
|
call git config --global user.email "<>"
|
|
|
|
if errorlevel 1 goto :error
|
|
|
|
|
|
|
|
echo.
|
2020-07-08 07:29:55 +03:00
|
|
|
echo Setting the WEBRTCM84_ROOT enviornment variable...
|
|
|
|
set WEBRTCM84_ROOT=c:\webrtc\src
|
2020-05-06 22:46:40 +03:00
|
|
|
|
|
|
|
echo.
|
|
|
|
echo Running the batch file that will patch all the necessary repos from the WebRTC code base...
|
2020-07-08 07:29:55 +03:00
|
|
|
..\patches_for_WebRTC_org\m84\patchWebRTCM84.cmd
|
2020-05-06 22:46:40 +03:00
|
|
|
if errorlevel 1 goto :error
|
|
|
|
|
|
|
|
goto :exit
|
|
|
|
|
|
|
|
:error
|
|
|
|
echo Last command failed with erro code: %errorlevel%
|
|
|
|
|
|
|
|
:exit
|
|
|
|
exit /b %errorlevel%
|