From 4db7ac8f982fa7a0dbde3cc2da6423a4e404a6a5 Mon Sep 17 00:00:00 2001 From: Chris Sosa Date: Thu, 13 Jan 2011 14:11:18 -0800 Subject: [PATCH] Print out SVN revision number for TOT chrome pfq builds. Change-Id: I046d49c7002586671dc7c6707afeeeb0a0360cd5 BUG=10934 TEST=Ran it with bin/cros_mark_chrome_as_stable tot. Verified output and that it still did the right thing Review URL: http://codereview.chromium.org/6327002 --- bin/cros_mark_chrome_as_stable.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/cros_mark_chrome_as_stable.py b/bin/cros_mark_chrome_as_stable.py index dc006a7b92..0b17218180 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)