diff --git a/plugin/deploy/ssh.go b/plugin/deploy/ssh.go index 0a9653a4..1b54960a 100644 --- a/plugin/deploy/ssh.go +++ b/plugin/deploy/ssh.go @@ -81,7 +81,7 @@ func (s *SSH) Write(f *buildfile.Buildfile) { } if len(s.Cmd) > 0 { - sshCmd := "ssh -o StrictHostKeyChecking=no -p %s %s \"%s\"" + sshCmd := "ssh -o StrictHostKeyChecking=no -p %s %s %q" f.WriteCmd(fmt.Sprintf(sshCmd, host[1], strings.SplitN(host[0], ":", 2)[0], s.Cmd)) } }