mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-11 15:06:58 +02:00
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
This commit is contained in:
parent
5c9571a926
commit
4db7ac8f98
@ -60,7 +60,9 @@ def _GetTipOfTrunkSvnRevision():
|
|||||||
for line in svn_info.splitlines():
|
for line in svn_info.splitlines():
|
||||||
match = revision_re.search(line)
|
match = revision_re.search(line)
|
||||||
if match:
|
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)
|
raise Exception('Could not find revision information from %s' % svn_url)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user