-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
55 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
Library/TeamTalkLib/build/webrtc/depottools-win.bat_sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
SET DEPOT_TOOLS_WIN_TOOLCHAIN=0 | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
SET PATH=%PATH%;@DEPOTTOOLS_DIR_NATIVE@ | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
CD @WEBRTC_FETCH_PATH_NATIVE@ | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
fetch.bat --nohooks webrtc | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
gclient sync --with_branch_heads --with_tags | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
|
||
cd @WEBRTC_SOURCE_ROOT_NATIVE@ | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
git checkout branch-heads/6818 | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
gclient sync -D | ||
IF NOT "%ERRORLEVEL%" == "0" GOTO fail | ||
|
||
@ECHO Finished fetching WebRTC | ||
|
||
EXIT /B 0 | ||
|
||
:fail | ||
EXIT /B 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
SET DEPOT_TOOLS_WIN_TOOLCHAIN=0 | ||
SET PATH=@DEPOTTOOLS_DIR_NATIVE@;%PATH% | ||
SET PATH=%PATH%;@DEPOTTOOLS_DIR_NATIVE@ |