Commit 5085e6f2 authored by machenbach's avatar machenbach Committed by Commit bot

[release] Fix auto-roller.

Uploading chromium CLs requires hooks to be run now,
what the auto-roller doesn't do.

TBR=hablich@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/1843593002

Cr-Commit-Position: refs/heads/master@{#35105}
parent c42b2c44
......@@ -155,6 +155,7 @@ class UploadCL(Step):
if not self._options.dry_run:
self.GitUpload(author=self._options.author,
force=True,
bypass_hooks=True,
cq=self._options.use_commit_queue,
cwd=cwd)
print "CL uploaded."
......
......@@ -1121,7 +1121,7 @@ deps = {
self.ROLL_COMMIT_MSG),
"", cwd=chrome_dir),
Cmd("git cl upload --send-mail --email \"author@chromium.org\" -f "
"--use-commit-queue", "", cwd=chrome_dir),
"--use-commit-queue --bypass-hooks", "", cwd=chrome_dir),
Cmd("git checkout -f master", "", cwd=chrome_dir),
Cmd("git branch -D work-branch", "", cwd=chrome_dir),
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment