mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
Exit with statuscode 0 for repo help init
The complete help text is printed, so the program executed successfully. Some tools (like OpenGrok) detects the availibility of a program by running it with a known set of options and check the return code. It is an easy and portable way of checking for the existence of a program instead of searching the path (and handle extensions) ourselves. Change-Id: Ic13428c77be4a36d599ccb8c86d893308818eae3
This commit is contained in:
parent
0048b69c03
commit
d3fd537ea5
1
repo
1
repo
@ -479,6 +479,7 @@ def _Help(args):
|
|||||||
if args:
|
if args:
|
||||||
if args[0] == 'init':
|
if args[0] == 'init':
|
||||||
init_optparse.print_help()
|
init_optparse.print_help()
|
||||||
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
print >>sys.stderr,\
|
print >>sys.stderr,\
|
||||||
"error: '%s' is not a bootstrap command.\n"\
|
"error: '%s' is not a bootstrap command.\n"\
|
||||||
|
Loading…
Reference in New Issue
Block a user