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

Unified Diff: bin/cros_mark_chrome_as_stable.py

Issue 6327002: Print out SVN revision number for TOT chrome pfq builds. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Fix typo Created 9 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cros_mark_chrome_as_stable.py
diff --git a/bin/cros_mark_chrome_as_stable.py b/bin/cros_mark_chrome_as_stable.py
index dc006a7b92f0e2aa4a1d42d76087997e33f4a783..0b17218180ecf1971cc472fc0b71421178eb421c 100755
--- a/bin/cros_mark_chrome_as_stable.py
+++ b/bin/cros_mark_chrome_as_stable.py
@@ -60,7 +60,9 @@ def _GetTipOfTrunkSvnRevision():
for line in svn_info.splitlines():
match = revision_re.search(line)
if match:
- return match.group(1)
+ svn_revision = match.group(1)
+ Info('Using SVN Revision %s' % svn_revision)
+ return svn_revision
raise Exception('Could not find revision information from %s' % svn_url)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698