mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-09-02 19:31:00 -07:00
Subversion dest should allow ~ expansion
Used os.path.expanduser on dest to allow e.g. ~/svn/repo as a destination
This commit is contained in:
parent
c04f00e3a6
commit
d4c4a51866
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']
|
repo = module.params['repo']
|
||||||
revision = module.params['revision']
|
revision = module.params['revision']
|
||||||
force = module.boolean(module.params['force'])
|
force = module.boolean(module.params['force'])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue