mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 17:53:10 +00:00
Merge pull request #1921 from lorin/git-abspath
Git module: fix for relative paths
This commit is contained in:
@@ -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']
|
||||
|
||||
Reference in New Issue
Block a user