mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07:00
Fix missing space in script action plugin.
This commit is contained in:
parent
ffaf442037
commit
615f70e3f4
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class ActionModule(object):
|
||||||
|
|
||||||
# add preparation steps to one ssh roundtrip executing the script
|
# add preparation steps to one ssh roundtrip executing the script
|
||||||
env_string = self.runner._compute_environment_string(conn, inject)
|
env_string = self.runner._compute_environment_string(conn, inject)
|
||||||
module_args = env_string + tmp_src + ' ' + args
|
module_args = ' '.join([env_string, tmp_src, args])
|
||||||
|
|
||||||
handler = utils.plugins.action_loader.get('raw', self.runner)
|
handler = utils.plugins.action_loader.get('raw', self.runner)
|
||||||
result = handler.run(conn, tmp, 'raw', module_args, inject)
|
result = handler.run(conn, tmp, 'raw', module_args, inject)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue