Remove TBR from version updater script.

No-Presubmit: True
Bug: webrtc:13373
Change-Id: I9c81b670c0456730495e6ec048a9dadfd4fb6f04
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/238421
Auto-Submit: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Christoffer Jansson <jansson@google.com>
Reviewed-by: Christoffer Jansson <jansson@google.com>
Cr-Commit-Position: refs/heads/main@{#35382}
This commit is contained in:
Mirko Bonadei
2021-11-19 07:17:41 +01:00
committed by WebRTC LUCI CQ
parent 6d2be9251a
commit 36cbcf1be8

View File

@ -109,12 +109,10 @@ def _LocalCommit():
git_author = subprocess.check_output(['git', 'config',
'user.email']).strip()
tbr_authors = git_author + ',' + 'mbonadei@webrtc.org'
tbr = 'TBR=%s' % tbr_authors
commit_msg = ('Update WebRTC code version (%02d-%02d-%02dT%02d:%02d:%02d).'
'\n\nTBR=%s\nBug: None')
'\n\nBug: None')
commit_msg = commit_msg % (d.year, d.month, d.day, d.hour, d.minute,
d.second, tbr_authors)
d.second)
subprocess.check_call(['git', 'add', '--update', '.'])
subprocess.check_call(['git', 'commit', '-m', commit_msg])