Skip to content

Commit

Permalink
powershell setup fixes (ansible#27516)
Browse files Browse the repository at this point in the history
* fixes ansible#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)
  • Loading branch information
nitzmahone authored Jul 31, 2017
1 parent bc3c315 commit dae8857
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,10 @@ def run(self):
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/*/*/*.*',
Expand Down

0 comments on commit dae8857

Please sign in to comment.