OLD | NEW |
1 @echo off | 1 @echo off |
2 :: Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 :: Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 :: Use of this source code is governed by a BSD-style license that can be | 3 :: Use of this source code is governed by a BSD-style license that can be |
4 :: found in the LICENSE file. | 4 :: found in the LICENSE file. |
5 | 5 |
6 :: This script will try to find if svn and python are accessible and it not, | 6 :: This script will try to find if svn and python are accessible and it not, |
7 :: it will try to download it and 'install' it in depot_tools. | 7 :: it will try to download it and 'install' it in depot_tools. |
8 | 8 |
9 :: Sadly, we can't use SETLOCAL here otherwise it ERRORLEVEL is not correctly | 9 :: Sadly, we can't use SETLOCAL here otherwise it ERRORLEVEL is not correctly |
10 :: returned. | 10 :: returned. |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 :PYTHON_FAIL | 53 :PYTHON_FAIL |
54 echo ... Failed to checkout python automatically. | 54 echo ... Failed to checkout python automatically. |
55 echo Please visit http://python.org to download the latest python 2.7.x client b
efore | 55 echo Please visit http://python.org to download the latest python 2.7.x client b
efore |
56 echo continuing. | 56 echo continuing. |
57 echo You can also get the "prebacked" version used at %WIN_TOOLS_ROOT_URL%/third
_party/ | 57 echo You can also get the "prebacked" version used at %WIN_TOOLS_ROOT_URL%/third
_party/ |
58 set ERRORLEVEL=1 | 58 set ERRORLEVEL=1 |
59 goto :END | 59 goto :END |
60 | 60 |
61 | 61 |
62 :GIT_CHECK | 62 :GIT_CHECK |
63 goto :GIT_1852_CHECK | 63 goto :GIT_190_CHECK |
64 | 64 |
65 | 65 |
66 :GIT_190_CHECK | 66 :GIT_190_CHECK |
67 if "%DEPOT_TOOLS_GIT_190%" == "0" goto :GIT_1852_CHECK | 67 if "%DEPOT_TOOLS_GIT_190%" == "0" goto :GIT_1852_CHECK |
68 set GIT_VERSION=1.9.0.chromium.1 | 68 :: Clean up a couple of known broken releases |
| 69 for /l %%i in (1,1,2) do if exist "%WIN_TOOLS_ROOT_DIR%\git-1.9.0.chromium.%%i_b
in" ( |
| 70 rmdir /s /q "%WIN_TOOLS_ROOT_DIR%\git-1.9.0.chromium.%%i_bin" |
| 71 ) |
| 72 set GIT_VERSION=1.9.0.chromium.3 |
| 73 for /f "tokens=2 delims=[]" %%i in ('ver') do set VERSTR=%%i |
| 74 for /f "tokens=2,3 delims=. " %%i in ("%VERSTR%") do (set VERMAJOR=%%i & set VER
MINOR=%%j) |
| 75 if %VERMAJOR% lss 5 set GIT_VERSION=1.9.0.chromium.3-xp |
| 76 if %VERMAJOR% equ 5 if %VERMINOR% lss 2 set GIT_VERSION=1.9.0.chromium.3-xp |
69 set GIT_BIN_DIR=git-%GIT_VERSION%_bin | 77 set GIT_BIN_DIR=git-%GIT_VERSION%_bin |
70 set GIT_ZIP_FILE=%GIT_BIN_DIR%.zip | 78 set GIT_ZIP_FILE=%GIT_BIN_DIR%.zip |
71 set GIT_ZIP_URL=https://commondatastorage.googleapis.com/chrome-infra/%GIT_ZIP_F
ILE% | 79 set GIT_ZIP_URL=https://commondatastorage.googleapis.com/chrome-infra/%GIT_ZIP_F
ILE% |
72 goto :GIT_COMMON | 80 goto :GIT_COMMON |
73 | 81 |
74 | 82 |
75 :GIT_1852_CHECK | 83 :GIT_1852_CHECK |
76 if "%DEPOT_TOOLS_GIT_1852%" == "0" goto :GIT_180_CHECK | 84 if "%DEPOT_TOOLS_GIT_1852%" == "0" goto :GIT_180_CHECK |
77 set GIT_VERSION=1.8.5.2.chromium.1 | 85 set GIT_VERSION=1.8.5.2.chromium.1 |
78 set GIT_BIN_DIR=git-%GIT_VERSION%_bin | 86 set GIT_BIN_DIR=git-%GIT_VERSION%_bin |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 goto :END | 200 goto :END |
193 | 201 |
194 | 202 |
195 :returncode | 203 :returncode |
196 set WIN_TOOLS_ROOT_URL= | 204 set WIN_TOOLS_ROOT_URL= |
197 set WIN_TOOLS_ROOT_DIR= | 205 set WIN_TOOLS_ROOT_DIR= |
198 exit /b %ERRORLEVEL% | 206 exit /b %ERRORLEVEL% |
199 | 207 |
200 :END | 208 :END |
201 call :returncode %ERRORLEVEL% | 209 call :returncode %ERRORLEVEL% |
OLD | NEW |