Chromium Code Reviews| Index: tools/autoroller/roll_chromium_revision.py |
| diff --git a/tools/autoroller/roll_chromium_revision.py b/tools/autoroller/roll_chromium_revision.py |
| index 57937ed82ee3e6042245524bd3271a9bd940b433..4dd7809b066e931216abf7d43da3f6f432e55922 100755 |
| --- a/tools/autoroller/roll_chromium_revision.py |
| +++ b/tools/autoroller/roll_chromium_revision.py |
| @@ -298,6 +298,8 @@ def _CreateRollBranch(dry_run): |
| if not dry_run: |
| sys.exit(-1) |
| + logging.info('Updating master branch...') |
| + _RunCommand(['git', 'pull']) |
|
pbos-webrtc
2015/06/09 09:34:31
Do you want to do this under a dry run? Also is th
kjellander_webrtc
2015/06/09 10:51:04
I thought it shouldn't never hurt your checkout to
|
| logging.info('Creating roll branch: %s', ROLL_BRANCH_NAME) |
| if not dry_run: |
| _RunCommand(['git', 'checkout', '-b', ROLL_BRANCH_NAME]) |