Merge pull request #1071 from dhozac/git-expanduser

User-expand the destination path of the git module
This commit is contained in:
Michael DeHaan 2012-09-23 10:21:04 -07:00
commit 2f97afb634

View file

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