mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Git module: fix for relative paths
If a relative path is passed as an argument, this change first converts it to an absolute path. This fixes a bug where the git module would attempt to chdir into an invalid directory because of multiple chdir calls against a relative path.
This commit is contained in:
parent
4d71b31f7e
commit
c337b64e35
1 changed files with 1 additions and 1 deletions
|
@ -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']
|
||||
|
|
Loading…
Reference in a new issue