mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix the install destination, now with os.path.join
This commit is contained in:
parent
0476272c79
commit
0c2af5d5ec
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ from ansible.constants import DEFAULT_MODULE_PATH
|
||||||
dirs=os.listdir("./library/")
|
dirs=os.listdir("./library/")
|
||||||
data_files = []
|
data_files = []
|
||||||
for i in dirs:
|
for i in dirs:
|
||||||
data_files.append((DEFAULT_MODULE_PATH + '/' + i, glob('./library/' + i + '/*')))
|
data_files.append((os.path.join(DEFAULT_MODULE_PATH, i), glob('./library/' + i + '/*')))
|
||||||
|
|
||||||
setup(name='ansible',
|
setup(name='ansible',
|
||||||
version=__version__,
|
version=__version__,
|
||||||
|
|
Loading…
Reference in a new issue