Chromium Code Reviews| Index: bootstrap/win/win_tools.bat |
| =================================================================== |
| --- bootstrap/win/win_tools.bat (revision 15495) |
| +++ bootstrap/win/win_tools.bat (working copy) |
| @@ -19,8 +19,8 @@ |
| :SVN_CHECK |
| :: If the batch file exists, skip the svn check. |
| -if "%WIN_TOOLS_FORCE%" == "1" goto :SVN_INSTALL |
| if exist "%WIN_TOOLS_ROOT_DIR%\svn.bat" goto :PYTHON_CHECK |
| +if "%WIN_TOOLS_FORCE%" == "1" goto :SVN_FORCE |
|
sigurdur.asgeirsson_gmail.com
2009/05/07 14:38:25
Won't this skip the SVN install if svn is present,
|
| call svn --version 2>nul 1>nul |
| if errorlevel 1 goto :SVN_INSTALL |
| goto :PYTHON_CHECK |
| @@ -54,9 +54,9 @@ |
| :PYTHON_CHECK |
| :: If the batch file exists, skip the python check. |
| -if "%WIN_TOOLS_FORCE%" == "1" goto :PYTHON_INSTALL |
| set ERRORLEVEL=0 |
| if exist "%WIN_TOOLS_ROOT_DIR%\python.bat" goto :END |
| +if "%WIN_TOOLS_FORCE%" == "1" goto :PYTHON_INSTALL |
|
sigurdur.asgeirsson_gmail.com
2009/05/07 14:38:25
ditto?
|
| call python --version 2>nul 1>nul |
| if errorlevel 1 goto :PYTHON_INSTALL |