3838
3939@click .group (context_settings = CONTEXT_SETTINGS , cls = StackCLI )
4040@click .option ("--stack" , help = "path to the stack to build/deploy" )
41- @click .option ("--quiet" , is_flag = True , default = False )
42- @click .option ("--verbose" , is_flag = True , default = False )
43- @click .option ("--dry-run" , is_flag = True , default = False )
44- @click .option ("--debug" , is_flag = True , default = False )
45- @click .option ("--continue-on-error" , is_flag = True , default = False )
41+ @click .option ("--verbose" , help = "More detailed output" , is_flag = True , default = False )
42+ @click .option ("--debug" , help = "Enable debug logging" , is_flag = True , default = False )
43+ # TEL: Hide these for now, until we make sure they are consistently implemented.
44+ @click .option ("--quiet" , is_flag = True , default = False , hidden = True )
45+ @click .option ("--dry-run" , is_flag = True , default = False , hidden = True )
46+ @click .option ("--continue-on-error" , is_flag = True , default = False , hidden = True )
4647@click .pass_context
4748def cli (ctx , stack , quiet , verbose , dry_run , debug , continue_on_error ):
4849 """BPI stack"""
@@ -53,6 +54,7 @@ def cli(ctx, stack, quiet, verbose, dry_run, debug, continue_on_error):
5354 opts .opts .o = command_options
5455 ctx .obj = command_options
5556
57+
5658cli .add_command (deploy .command , "deploy" )
5759cli .add_command (deployment .command , "deployment" )
5860cli .add_command (fetch_stack .command , "fetch-stack" )
0 commit comments