mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #3744 from jimi1283/issue_3360
Allow destination paths in the hg module to include a tilde (~)
This commit is contained in:
commit
b31cef48e9
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ def main():
|
|||
),
|
||||
)
|
||||
repo = module.params['repo']
|
||||
dest = module.params['dest']
|
||||
dest = os.path.expanduser(module.params['dest'])
|
||||
revision = module.params['revision']
|
||||
force = module.params['force']
|
||||
purge = module.params['purge']
|
||||
|
|
Loading…
Reference in a new issue