Fixes --version in ansible-galaxy cli

pull/63637/head
Andrea Tartaglia 5 years ago committed by Toshio Kuratomi
parent 81d49c38f8
commit 202ad4f89a

@ -44,7 +44,7 @@ class GalaxyCLI(CLI):
def __init__(self, args):
# Inject role into sys.argv[1] as a backwards compatibility step
if len(args) > 1 and args[1] not in ['-h', '--help'] and 'role' not in args and 'collection' not in args:
if len(args) > 1 and args[1] not in ['-h', '--help', '--version'] and 'role' not in args and 'collection' not in args:
# TODO: Should we add a warning here and eventually deprecate the implicit role subcommand choice
# Remove this in Ansible 2.13 when we also remove -v as an option on the root parser for ansible-galaxy.
idx = 2 if args[1].startswith('-v') else 1

@ -6,6 +6,9 @@ ansible-playbook setup.yml "$@"
trap 'ansible-playbook cleanup.yml' EXIT
# Very simple version test
ansible-galaxy --version
# Need a relative custom roles path for testing various scenarios of -p
galaxy_relative_rolespath="my/custom/roles/path"

Loading…
Cancel
Save