From 52c9c1dc39ed7ad1e636c90f1e20efd718f6c97f Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Sat, 15 Feb 2014 09:57:52 -0600 Subject: [PATCH] Fixing usage string in ansible-galaxy install for role files --- bin/ansible-galaxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ansible-galaxy b/bin/ansible-galaxy index d14a501572..a528b950f8 100755 --- a/bin/ansible-galaxy +++ b/bin/ansible-galaxy @@ -173,7 +173,7 @@ def build_option_parser(action): help='The path in which the skeleton role will be created.' 'The default is the current working directory.') 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( '-i', '--ignore-errors', dest='ignore_errors', action='store_true', default=False, help='Ignore errors and continue with the next specified role.')