From: Leonardo Sandoval <[email protected]> When user asks for help, the command should not exit with non-zero status (failure), so removing the non-zero value on the system exit call.
Signed-off-by: Leonardo Sandoval <[email protected]> --- scripts/yocto-bsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/yocto-bsp b/scripts/yocto-bsp index d269861..2d9453f 100755 --- a/scripts/yocto-bsp +++ b/scripts/yocto-bsp @@ -140,7 +140,7 @@ def main(): if args[0] == "help": if len(args) == 1: parser.print_help() - sys.exit(1) + sys.exit() invoke_subcommand(args, parser, yocto_bsp_help_usage, subcommands) -- 1.8.4.5 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
