mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #988 from willthames/svn-expand-path
Subversion dest should allow ~ expansion
This commit is contained in:
commit
8c028c4cfa
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ def main():
|
|||
)
|
||||
)
|
||||
|
||||
dest = module.params['dest']
|
||||
dest = os.path.expanduser(module.params['dest'])
|
||||
repo = module.params['repo']
|
||||
revision = module.params['revision']
|
||||
force = module.boolean(module.params['force'])
|
||||
|
|
Loading…
Reference in a new issue