Commit ceb843a3 authored by Nicolas Wavrant's avatar Nicolas Wavrant

recipe/pbs: correctly separates arguments in promises

parent 2a733418
......@@ -41,7 +41,7 @@ from slapos.recipe.librecipe import shlex
def promise(args):
ssh = subprocess.Popen(
[args['ssh_client'], '%(user)s@%(host)s/%(port)s' % args],
[args['ssh_client'], '%(user)s@%(host)s' % args, '-p', '%(port)s' % args],
stdin=subprocess.PIPE, stdout=None, stderr=None
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment