mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 18:04:02 -07:00
Add DIST_MODULE_PATH so setup.py and ansible.spec can live in harmony. Closes #1277
This commit is contained in:
parent
f3d7294690
commit
baa91ebc95
2 changed files with 7 additions and 3 deletions
4
setup.py
4
setup.py
|
@ -9,8 +9,8 @@ from ansible import __version__, __author__
|
|||
from distutils.core import setup
|
||||
|
||||
# find library modules
|
||||
from ansible.constants import DEFAULT_MODULE_PATH
|
||||
data_files = [ (DEFAULT_MODULE_PATH, glob('./library/*')) ]
|
||||
from ansible.constants import DIST_MODULE_PATH
|
||||
data_files = [ (DIST_MODULE_PATH, glob('./library/*')) ]
|
||||
|
||||
print "DATA FILES=%s" % data_files
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue