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

Unified Diff: tools/roll_deps.py

Issue 200203003: tools/roll_deps: add '-m tryserver.chromium' to git-cl-try (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 9 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/roll_deps.py
diff --git a/tools/roll_deps.py b/tools/roll_deps.py
index ebecad3396f6883f297c2e91c57ae0e5e7fecb63..07b1c007bacc6cda35e5eb209e7b1e653f1e3a74 100755
--- a/tools/roll_deps.py
+++ b/tools/roll_deps.py
@@ -365,7 +365,8 @@ def git_cl_uploader(config, message, file_list):
if config.reviewers_list:
git_cl.append('--reviewers=%s' % config.reviewers_list)
- git_try = [git, 'cl', 'try', '--revision', svn_info]
+ git_try = [
+ git, 'cl', 'try', '-m', 'tryserver.chromium', '--revision', svn_info]
git_try.extend([arg for bot in config.cl_bot_list for arg in ('-b', bot)])
branch_name = git_utils.git_branch_name(vsp.verbose)
« 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