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 batch file will try to sync the root directory. | 6 :: This batch file will try to sync the root directory. |
7 | 7 |
8 setlocal | 8 setlocal |
9 | 9 |
10 :: Windows sometimes freaks out if a file is overwritten while it's being | |
iannucci
2013/03/20 21:06:14
'sometimes'?
szager1
2013/03/20 21:19:10
I haven't explored every nuance of this behavior (
iannucci
2013/03/20 21:33:14
I was meaning that the 'sometimes' can just be omi
M-A Ruel
2013/03/20 21:51:22
Exact, cmd.exe keeps a byte offset and re-reads th
szager1
2013/03/20 21:53:52
OK, I removed 'sometimes'. Why give false hope?
| |
11 :: executed. Copy this script off to a temporary location and reinvoke from | |
12 :: there before running any svn or git commands. | |
13 IF %~nx0==update_depot_tools.bat ( | |
14 COPY /Y %~dp0update_depot_tools.bat %~dp0update_depot_tools_tmp.bat >nul | |
iannucci
2013/03/20 21:06:14
is %~dp guaranteed to end with a r'\' ?
M-A Ruel
2013/03/20 21:06:37
Please use %TEMP%\update_depot_tools_%RANDOM%.bat,
szager1
2013/03/20 21:19:10
That means that I have to fix every occurence of %
M-A Ruel
2013/03/20 21:51:22
I don't mind about not using random but you should
szager1
2013/03/20 21:53:52
Hmmm... I've never seen it any other way.
szager1
2013/03/20 21:53:52
Hmmm... I've never seen it any other way. Theoret
szager1
2013/03/20 22:03:44
Done.
| |
15 if errorlevel 1 goto :EOF | |
16 %~dp0update_depot_tools_tmp.bat %* | |
iannucci
2013/03/20 21:06:14
Should we goto :EOF after this? I forget how batch
szager1
2013/03/20 21:19:10
Empirical evidence suggests that it's not necessar
M-A Ruel
2013/03/20 21:51:22
No it's not necessary. As long as there is not 'ca
| |
17 ) | |
18 | |
10 set GIT_URL=https://chromium.googlesource.com/chromium/tools/depot_tools.git | 19 set GIT_URL=https://chromium.googlesource.com/chromium/tools/depot_tools.git |
11 | 20 |
12 :: Will download svn and python. | 21 :: Will download svn and python. |
13 :: If you don't want to install the depot_tools version of these tools, remove | 22 :: If you don't want to install the depot_tools version of these tools, remove |
14 :: the 'force' option on the next command. The tools will be installed only if | 23 :: the 'force' option on the next command. The tools will be installed only if |
15 :: not already in the PATH environment variable. | 24 :: not already in the PATH environment variable. |
16 call "%~dp0bootstrap\win\win_tools.bat" force | 25 call "%~dp0bootstrap\win\win_tools.bat" force |
17 if errorlevel 1 goto :EOF | 26 if errorlevel 1 goto :EOF |
18 :: Now clear errorlevel so it can be set by other programs later. | 27 :: Now clear errorlevel so it can be set by other programs later. |
19 set errorlevel= | 28 set errorlevel= |
(...skipping 27 matching lines...) Expand all Loading... | |
47 ) | 56 ) |
48 ) | 57 ) |
49 call git fetch -q origin > NUL | 58 call git fetch -q origin > NUL |
50 call git rebase -q origin/master > NUL | 59 call git rebase -q origin/master > NUL |
51 goto :EOF | 60 goto :EOF |
52 | 61 |
53 :GIT_SVN_UPDATE | 62 :GIT_SVN_UPDATE |
54 cd /d "%~dp0." | 63 cd /d "%~dp0." |
55 call git svn rebase -q -q | 64 call git svn rebase -q -q |
56 goto :EOF | 65 goto :EOF |
OLD | NEW |