mirror of
https://gerrit.googlesource.com/git-repo
synced 2025-06-26 20:17:52 +00:00
help/version: sprinkle bug report URL around
Make it a bit easier for people to locate bug reporting info. Change-Id: If9c8939c84ebd52eb96b353c1797afa25868bb85 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/303943 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: Raman Tenneti <rtenneti@google.com>
This commit is contained in:
4
repo
4
repo
@ -145,6 +145,8 @@ if not REPO_URL:
|
||||
REPO_REV = os.environ.get('REPO_REV')
|
||||
if not REPO_REV:
|
||||
REPO_REV = 'stable'
|
||||
# URL to file bug reports for repo tool issues.
|
||||
BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue'
|
||||
|
||||
# increment this whenever we make important changes to this script
|
||||
VERSION = (2, 14)
|
||||
@ -1171,6 +1173,7 @@ The most commonly used repo commands are:
|
||||
|
||||
For access to the full online help, install repo ("repo init").
|
||||
""")
|
||||
print('Bug reports:', BUG_URL)
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
@ -1204,6 +1207,7 @@ def _Version():
|
||||
print('OS %s %s (%s)' % (uname.system, uname.release, uname.version))
|
||||
print('CPU %s (%s)' %
|
||||
(uname.machine, uname.processor if uname.processor else 'unknown'))
|
||||
print('Bug reports:', BUG_URL)
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user