1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #1921 from lorin/git-abspath

Git module: fix for relative paths
This commit is contained in:
Michael DeHaan 2013-01-25 17:57:07 -08:00
commit f97622d4f6

View file

@ -225,7 +225,7 @@ def main():
)
)
dest = os.path.expanduser(module.params['dest'])
dest = os.path.abspath(os.path.expanduser(module.params['dest']))
repo = module.params['repo']
version = module.params['version']
remote = module.params['remote']