1
0

CEF changes

This commit is contained in:
Scott Graves
2017-03-17 12:27:46 -05:00
parent 50548a9267
commit f647c45712
5 changed files with 48 additions and 19 deletions

View File

@@ -5,15 +5,22 @@ mkdir automate
mkdir chromium_git
mkdir depot_tools
wget --no-check-certificate https://bitbucket.org/chromiumembedded/cef/raw/master/tools/automate/automate-git.py
move /y automate-git.py automate\
wget --no-check-certificate https://bitbucket.org/chromiumembedded/cef/raw/master/tools/automate/automate-git.py || goto :ERROR
move /y automate-git.py automate\ || goto :ERROR
wget --no-check-certificate https://storage.googleapis.com/chrome-infra/depot_tools.zip
unzip -o -q -d depot_tools\ depot_tools.zip
del /q depot_tools.zip
wget --no-check-certificate https://storage.googleapis.com/chrome-infra/depot_tools.zip || goto :ERROR
unzip -o -q -d depot_tools\ depot_tools.zip || goto :ERROR
del /q depot_tools.zip || goto :ERROR
pushd depot_tools
call update_depot_tools.bat
call update_depot_tools.bat || goto :ERROR
popd
goto :END
:ERROR
pause
popd
pause
exit 1
:END
popd