Commit 0c2af5d5 by Ton Kersten

Fix the install destination, now with os.path.join

parent 0476272c
......@@ -13,7 +13,7 @@ from ansible.constants import DEFAULT_MODULE_PATH
dirs=os.listdir("./library/")
data_files = []
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',
version=__version__,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment