forked from docsteer/sacnview
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Breakpad is currently broken on Windows. Manually call the hook
- Loading branch information
1 parent
f8e329c
commit 05eb791
Showing
3 changed files
with
30 additions
and
4 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 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,28 @@ | ||
@echo off | ||
|
||
cd %~dp0 | ||
|
||
if exist breakpad ( | ||
goto update_gclient | ||
) | ||
|
||
:install_breakpad | ||
echo Installing Breakpad for the first time | ||
|
||
mkdir breakpad | ||
pushd breakpad | ||
call fetch.bat breakpad | ||
|
||
if errorlevel 1 ( | ||
echo Working around breakpad bug on Windows | ||
python3.bat src\src\tools\python\deps-to-manifest.py src/DEPS src/default.xml | ||
) | ||
|
||
popd | ||
|
||
:update_gclient | ||
pushd breakpad | ||
call gclient.bat sync | ||
popd | ||
|
||
EXIT /B |
Submodule depot_tools
updated
from 8fbdc5 to 6e32e9