mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 19:32:47 +00: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:
@@ -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'])
|
||||
|
||||
Reference in New Issue
Block a user