mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00: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:
@@ -211,7 +211,7 @@ def main():
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
repo = module.params['repo']
|
repo = module.params['repo']
|
||||||
dest = module.params['dest']
|
dest = os.path.expanduser(module.params['dest'])
|
||||||
revision = module.params['revision']
|
revision = module.params['revision']
|
||||||
force = module.params['force']
|
force = module.params['force']
|
||||||
purge = module.params['purge']
|
purge = module.params['purge']
|
||||||
|
|||||||
Reference in New Issue
Block a user