mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
call expanduser for src and dest
This commit is contained in:
parent
0bf51a6df1
commit
5f0e882d01
1 changed files with 2 additions and 2 deletions
|
@ -46,8 +46,8 @@ class ActionModule(object):
|
||||||
if complex_args:
|
if complex_args:
|
||||||
options.update(complex_args)
|
options.update(complex_args)
|
||||||
options.update(utils.parse_kv(module_args))
|
options.update(utils.parse_kv(module_args))
|
||||||
source = options.get('src', None)
|
source = os.path.expanduser(options.get('src', None))
|
||||||
dest = options.get('dest', None)
|
dest = os.path.expanduser(options.get('dest', None))
|
||||||
copy = utils.boolean(options.get('copy', 'yes'))
|
copy = utils.boolean(options.get('copy', 'yes'))
|
||||||
|
|
||||||
if source is None or dest is None:
|
if source is None or dest is None:
|
||||||
|
|
Loading…
Reference in a new issue