mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Fixed incorrect handling of paths contaiin whitespaces
This commit is contained in:
@@ -221,8 +221,8 @@ def main():
|
||||
supports_check_mode = True
|
||||
)
|
||||
|
||||
source = module.params['src']
|
||||
dest = module.params['dest']
|
||||
source = '"' + module.params['src'] + '"'
|
||||
dest = '"' + module.params['dest'] + '"'
|
||||
dest_port = module.params['dest_port']
|
||||
delete = module.params['delete']
|
||||
private_key = module.params['private_key']
|
||||
|
||||
Reference in New Issue
Block a user