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

Unified Diff: tools/push-to-trunk/bump_up_version.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 | « tools/push-to-trunk/auto_tag.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/push-to-trunk/bump_up_version.py
diff --git a/tools/push-to-trunk/bump_up_version.py b/tools/push-to-trunk/bump_up_version.py
index fdb02bcf5716fbd4ccbc02d7d4721b1cdb8c2ad8..4a10b86615ed0ae9282aba7bc0b2cd719879f5d9 100755
--- a/tools/push-to-trunk/bump_up_version.py
+++ b/tools/push-to-trunk/bump_up_version.py
@@ -28,11 +28,17 @@ from common_includes import *
VERSION_BRANCH = "auto-bump-up-version"
-#TODO(machenbach): Add vc interface that works on git mirror.
+# TODO(machenbach): Add vc interface that works on git mirror.
class Preparation(Step):
MESSAGE = "Preparation."
def RunStep(self):
+ # TODO(machenbach): Remove after the git switch.
+ if(self.Config("PERSISTFILE_BASENAME") ==
+ "/tmp/v8-bump-up-version-tempfile"):
+ print "This script is disabled until after the v8 git migration."
+ return True
+
# Check for a clean workdir.
if not self.GitIsWorkdirClean(): # pragma: no cover
# This is in case a developer runs this script on a dirty tree.
« no previous file with comments | « tools/push-to-trunk/auto_tag.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698