mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-04 05:04:22 -07:00
Allow destination paths in the hg module to include a tilde (~)
Fixes issue #3360 - Inconsistent behavior of the hg module w.r.t. dest path
This commit is contained in:
parent
d485abe2e7
commit
7d521ee22c
1 changed files with 1 additions and 1 deletions
|
@ -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']
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue