diff --git a/galaxy.yml b/galaxy.yml index 81c3fd2..105b933 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: kewlfft name: aur # The version of the collection. Must be compatible with semantic versioning -version: 0.9.1 +version: 0.10.0 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md @@ -66,4 +66,3 @@ issues: https://github.com/kewlfft/ansible-aur/issues # uses 'fnmatch' to match the files or directories. Some directories and files like 'galaxy.yml', '*.pyc', '*.retry', # and '.git' are always filtered build_ignore: [] - diff --git a/plugins/modules/aur.py b/plugins/modules/aur.py index 9c97c04..fe569fe 100644 --- a/plugins/modules/aur.py +++ b/plugins/modules/aur.py @@ -384,7 +384,7 @@ def apply_module(module, use): if module.check_mode: check_upgrade(module, use) else: - upgrade(module, use, params['extra_args'], params['aur_only']) + upgrade(module, use, params['extra_args'], params['aur_only'], params['refresh']) else: if module.check_mode: check_packages(module, params['name'])