Skip to content
Snippets Groups Projects
Commit e36001f9 authored by Ed Baunton's avatar Ed Baunton
Browse files

Make `bst help` work

parent 69e59443
No related branches found
No related tags found
Loading
Pipeline #23410809 failed
......@@ -189,6 +189,10 @@ def cli(context, **kwargs):
context.obj = App.create(dict(kwargs))
context.call_on_close(context.obj.cleanup)
@cli.command(short_help="Print usage information")
@click.pass_context
def help(ctx):
click.echo(ctx.parent.get_help())
##################################################################
# Init Command #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment