Commit f97622d4 by Michael DeHaan

Merge pull request #1921 from lorin/git-abspath

Git module: fix for relative paths
parents 4d71b31f c337b64e
......@@ -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']
......
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