Skip to content

Commit

Permalink
Add help text
Browse files Browse the repository at this point in the history
  • Loading branch information
puhitaku committed Jun 14, 2020
1 parent e8b0eed commit b9f29d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r3build/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class ConfigOption(click.types.StringParamType):
help='Configuration file. (default = r3build.toml)',
type=ConfigOption(),
)
@click.option('-v', '--verbose', is_flag=True)
@click.option('--list-types', is_flag=True)
@click.option('-v', '--verbose', help='Verbose mode (equivalent to `log.all = true` in config)', is_flag=True)
@click.option('--list-types', help='List available job types', is_flag=True)
def main(config, verbose, list_types):
if list_types:
print('Available Job Types (a.k.a. processor IDs):')
Expand Down

0 comments on commit b9f29d1

Please sign in to comment.