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

Unified Diff: tools/release/git_recipes.py

Issue 1095483002: Store hashes of current and previous shipped V8 version (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed more than 80 character line Created 5 years, 8 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/release/releases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/release/git_recipes.py
diff --git a/tools/release/git_recipes.py b/tools/release/git_recipes.py
index 1a57380b637f9438d93e3fb9c0be11680f503a26..89fd7c9cf663828220d35e6d720eaee2547f89c7 100644
--- a/tools/release/git_recipes.py
+++ b/tools/release/git_recipes.py
@@ -280,3 +280,6 @@ class GitRecipesMixin(object):
return match.group(1)
raise GitFailedException("Couldn't determine commit position for %s" %
git_hash)
+
+ def GitGetHashOfTag(self, tag_name, **kwargs):
+ return self.Git("rev-list -1 " + tag_name).strip().encode("ascii", "ignore")
« no previous file with comments | « no previous file | tools/release/releases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698