mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
User-expand the destination path of the git module
This commit is contained in:
parent
b8c4bb9e6e
commit
f6af88fe9f
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ def main():
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
dest = module.params['dest']
|
dest = os.path.expanduser(module.params['dest'])
|
||||||
repo = module.params['repo']
|
repo = module.params['repo']
|
||||||
version = module.params['version']
|
version = module.params['version']
|
||||||
remote = module.params['remote']
|
remote = module.params['remote']
|
||||||
|
|
Loading…
Reference in a new issue