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

Unified Diff: tools/push-to-trunk/auto_tag.py

Issue 609443002: Disable version increment and tagging until after the git migration. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | tools/push-to-trunk/bump_up_version.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/push-to-trunk/auto_tag.py
diff --git a/tools/push-to-trunk/auto_tag.py b/tools/push-to-trunk/auto_tag.py
index 4e9f718bc30442bde2fe8f2d82bf432e115fb643..7b82e8389048dff500110210aee0ef23925dd988 100755
--- a/tools/push-to-trunk/auto_tag.py
+++ b/tools/push-to-trunk/auto_tag.py
@@ -13,6 +13,11 @@ class Preparation(Step):
MESSAGE = "Preparation."
def RunStep(self):
+ # TODO(machenbach): Remove after the git switch.
+ if self.Config("PERSISTFILE_BASENAME") == "/tmp/v8-auto-tag-tempfile":
+ print "This script is disabled until after the v8 git migration."
+ return True
+
self.CommonPrepare()
self.PrepareBranch()
self.GitCheckout("master")
« no previous file with comments | « no previous file | tools/push-to-trunk/bump_up_version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698