Index: tools/push-to-trunk/push_to_trunk.py |
diff --git a/tools/push-to-trunk/push_to_trunk.py b/tools/push-to-trunk/push_to_trunk.py |
index e873232d184daec9340a997099b4d12c843df950..6e821f2a0bff9b8f31c784750227ed517555aa69 100755 |
--- a/tools/push-to-trunk/push_to_trunk.py |
+++ b/tools/push-to-trunk/push_to_trunk.py |
@@ -51,11 +51,6 @@ class Preparation(Step): |
self.PrepareBranch() |
self.DeleteBranch(self.Config("TRUNKBRANCH")) |
- # Allow directly pushing to candidates. |
- if not self.Git("config --get remote.origin.push").strip(): |
- self.Git("config --add remote.origin.push " |
- "refs/remotes/origin/candidates:refs/pending/heads/candidates") |
tandrii(chromium)
2014/11/13 13:18:50
yeah :(
|
- |
class FreshBranch(Step): |
MESSAGE = "Create a fresh branch." |
@@ -355,7 +350,7 @@ class Land(Step): |
MESSAGE = "Land the patch." |
def RunStep(self): |
- self.vc.Land() |
+ self.vc.CLLand() |
class TagRevision(Step): |