Fix cc feature for upload in merge script.
TBR=ulan@chromium.org Review URL: https://codereview.chromium.org/608723002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24246 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
881f25b233
commit
b7cf053937
@ -207,7 +207,7 @@ class GitRecipesMixin(object):
|
||||
if bypass_hooks:
|
||||
args.append("--bypass-hooks")
|
||||
if cc:
|
||||
args += ["-cc", Quoted(cc)]
|
||||
args += ["--cc", Quoted(cc)]
|
||||
# TODO(machenbach): Check output in forced mode. Verify that all required
|
||||
# base files were uploaded, if not retry.
|
||||
self.Git(MakeArgs(args), pipe=False, **kwargs)
|
||||
|
@ -1137,7 +1137,7 @@ LOG=N
|
||||
Cmd("git commit -aF \"%s\"" % TEST_CONFIG["COMMITMSG_FILE"], ""),
|
||||
RL("reviewer@chromium.org"), # V8 reviewer.
|
||||
Cmd("git cl upload --send-mail -r \"reviewer@chromium.org\" "
|
||||
"--bypass-hooks -cc \"ulan@chromium.org\"", ""),
|
||||
"--bypass-hooks --cc \"ulan@chromium.org\"", ""),
|
||||
Cmd("git checkout -f %s" % TEST_CONFIG["BRANCHNAME"], ""),
|
||||
RL("LGTM"), # Enter LGTM for V8 CL.
|
||||
Cmd("git cl presubmit", "Presubmit successfull\n"),
|
||||
@ -1265,7 +1265,7 @@ LOG=N
|
||||
Cmd("git commit -aF \"%s\"" % TEST_CONFIG["COMMITMSG_FILE"], ""),
|
||||
RL("reviewer@chromium.org"), # V8 reviewer.
|
||||
Cmd("git cl upload --send-mail -r \"reviewer@chromium.org\" "
|
||||
"--bypass-hooks -cc \"ulan@chromium.org\"", ""),
|
||||
"--bypass-hooks --cc \"ulan@chromium.org\"", ""),
|
||||
Cmd("git checkout -f %s" % TEST_CONFIG["BRANCHNAME"], ""),
|
||||
RL("LGTM"), # Enter LGTM for V8 CL.
|
||||
Cmd("git cl presubmit", "Presubmit successfull\n"),
|
||||
|
Loading…
Reference in New Issue
Block a user