1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02: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:
willthames 2012-09-04 10:06:47 +10:00
parent c04f00e3a6
commit d4c4a51866

View file

@ -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'])