mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-14 04:41:27 +00:00
powershell setup fixes (#27516)
* fixes #27374 * recursively include top 2 levels of .psm1's under module_utils/powershell * recursively include top 2 levels of .ps1's under modules/windows (for future restructuring)
This commit is contained in:
@@ -7,7 +7,7 @@ include .coveragerc
|
||||
include .yamllint
|
||||
include examples/hosts
|
||||
include examples/ansible.cfg
|
||||
include lib/ansible/module_utils/powershell/*.psm1
|
||||
recursive-include lib/ansible/module_utils/powershell *
|
||||
recursive-include lib/ansible/modules *
|
||||
recursive-include lib/ansible/galaxy/data *
|
||||
recursive-include docs *
|
||||
|
||||
5
setup.py
5
setup.py
@@ -172,9 +172,10 @@ setup(
|
||||
packages=find_packages('lib'),
|
||||
package_data={
|
||||
'': [
|
||||
'module_utils/*.ps1',
|
||||
'modules/windows/*.ps1',
|
||||
'module_utils/powershell/*.psm1',
|
||||
'module_utils/powershell/*/*.psm1',
|
||||
'modules/windows/*.ps1',
|
||||
'modules/windows/*/*.ps1',
|
||||
'galaxy/data/*/*.*',
|
||||
'galaxy/data/*/*/.*',
|
||||
'galaxy/data/*/*/*.*',
|
||||
|
||||
Reference in New Issue
Block a user