Index: tools/release/create_release.py |
diff --git a/tools/release/create_release.py b/tools/release/create_release.py |
index 7477ea1461f5ebc8b10de654fd7136033a8292b4..3bbb50e491aa5bc175d747f3af996a8c4236226d 100755 |
--- a/tools/release/create_release.py |
+++ b/tools/release/create_release.py |
@@ -10,6 +10,7 @@ |
import urllib2 |
from common_includes import * |
+ |
class Preparation(Step): |
MESSAGE = "Preparation." |
@@ -163,7 +164,6 @@ |
self.Git("checkout -b work-branch %s" % self["push_hash"]) |
self.GitCheckoutFile(CHANGELOG_FILE, self["latest_version"]) |
self.GitCheckoutFile(VERSION_FILE, self["latest_version"]) |
- self.GitCheckoutFile(WATCHLISTS_FILE, self["latest_version"]) |
class AddChangeLog(Step): |
@@ -181,19 +181,6 @@ |
def RunStep(self): |
self.SetVersion(os.path.join(self.default_cwd, VERSION_FILE), "new_") |
- |
- |
-class EnableMergeWatchlist(Step): |
- MESSAGE = "Enable watchlist entry for merge notifications." |
- |
- def RunStep(self): |
- old_watchlist_content = FileToText(os.path.join(self.default_cwd, |
- WATCHLISTS_FILE)) |
- new_watchlist_content = re.sub("(# 'v8-merges@googlegroups\.com',)", |
- "'v8-merges@googlegroups.com',", |
- old_watchlist_content) |
- TextToFile(new_watchlist_content, os.path.join(self.default_cwd, |
- WATCHLISTS_FILE)) |
class CommitBranch(Step): |
@@ -301,7 +288,6 @@ |
MakeBranch, |
AddChangeLog, |
SetVersion, |
- EnableMergeWatchlist, |
CommitBranch, |
PushBranch, |
TagRevision, |