mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-29 01:11:43 -07:00
Close parens in portinstall
This commit is contained in:
parent
4e8b97ddeb
commit
6067d826e4
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ def query_package(module, name):
|
||||||
if pkg_info_path:
|
if pkg_info_path:
|
||||||
pkgng = False
|
pkgng = False
|
||||||
pkg_glob_path = module.get_bin_path('pkg_glob', True)
|
pkg_glob_path = module.get_bin_path('pkg_glob', True)
|
||||||
rc, out, err = module.run_command("%s -e `pkg_glob %s`" % (pkg_info_path, pipes.quote(name), use_unsafe_shell=True)
|
rc, out, err = module.run_command("%s -e `pkg_glob %s`" % (pkg_info_path, pipes.quote(name)), use_unsafe_shell=True)
|
||||||
else:
|
else:
|
||||||
pkgng = True
|
pkgng = True
|
||||||
pkg_info_path = module.get_bin_path('pkg', True)
|
pkg_info_path = module.get_bin_path('pkg', True)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue