1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixing usage string in ansible-galaxy install for role files

This commit is contained in:
James Cammarata 2014-02-15 09:57:52 -06:00
parent 9dd9487692
commit 52c9c1dc39

View file

@ -173,7 +173,7 @@ def build_option_parser(action):
help='The path in which the skeleton role will be created.' help='The path in which the skeleton role will be created.'
'The default is the current working directory.') 'The default is the current working directory.')
elif action == "install": elif action == "install":
parser.set_usage("usage: %prog install [options] [-f FILE | role_name(s)[,version] | tar_file(s)]") parser.set_usage("usage: %prog install [options] [-r FILE | role_name(s)[,version] | tar_file(s)]")
parser.add_option( parser.add_option(
'-i', '--ignore-errors', dest='ignore_errors', action='store_true', default=False, '-i', '--ignore-errors', dest='ignore_errors', action='store_true', default=False,
help='Ignore errors and continue with the next specified role.') help='Ignore errors and continue with the next specified role.')