Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Unified Diff: tools/safely-roll-webkit.py

Issue 9148045: Making safely-roll-webkit.py work with "new git workflow" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: changed copyright header to 2012 as presubmit wants Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/safely-roll-webkit.py
diff --git a/tools/safely-roll-webkit.py b/tools/safely-roll-webkit.py
index 168569a257adbfe0b7f2ea97ae44baae966ee7aa..2ddb08687443f41babd5864bc3df7ef36d312b45 100755
--- a/tools/safely-roll-webkit.py
+++ b/tools/safely-roll-webkit.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -65,12 +65,12 @@ def main():
parser.error(
'Please delete the branch webkit_roll and move to a different branch')
subprocess2.check_output(
- ['git', 'checkout', '-b', 'webkit_roll', 'origin/trunk'])
+ ['git', 'checkout', '-b', 'webkit_roll', 'origin/master'])
try:
process_deps(os.path.join(root_dir, 'DEPS'), new_rev)
commit_msg = msg + '\n\nTBR=\n'
subprocess2.check_output(['git', 'commit', '-m', commit_msg, 'DEPS'])
- subprocess2.check_call(['git', 'diff', 'origin/trunk'])
+ subprocess2.check_call(['git', 'diff', 'origin/master'])
subprocess2.check_call(['git', 'cl', 'upload', '--use-commit-queue'])
finally:
subprocess2.check_output(['git', 'checkout', old_branch])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698