| OLD | NEW |
| 1 @echo off | 1 @echo off |
| 2 :: Copyright (c) 2009 The Chromium Authors. All rights reserved. | 2 :: Copyright (c) 2009 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 file is a stub to sync .\bootstrap first and defer control to | 6 :: This file is a stub to sync .\bootstrap first and defer control to |
| 7 :: .\bootstrap\gclient.bat, which will sync back '.'. This is unless auto | 7 :: .\bootstrap\gclient.bat, which will sync back '.'. This is unless auto |
| 8 :: update is disabled, were gclient.py is directly called. | 8 :: update is disabled, were gclient.py is directly called. |
| 9 setlocal | 9 setlocal |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 :: Don't bother to try to update any thing. | 33 :: Don't bother to try to update any thing. |
| 34 python "%~dp0\gclient.py" %* | 34 python "%~dp0\gclient.py" %* |
| 35 goto :EOF | 35 goto :EOF |
| 36 | 36 |
| 37 | 37 |
| 38 :UPDATE | 38 :UPDATE |
| 39 :: Transfer control to ease the update process. The following lines won't be | 39 :: Transfer control to ease the update process. The following lines won't be |
| 40 :: executed so don't add any! Specifically, don't use 'call' in the following | 40 :: executed so don't add any! Specifically, don't use 'call' in the following |
| 41 :: line. | 41 :: line. |
| 42 "%~dp0bootstrap\gclient.bat" %* | 42 "%~dp0bootstrap\gclient.bat" %* |
| 43 goto :EOF | 43 goto :EOF |
| OLD | NEW |