using %q for quoting ssh command
This commit is contained in:
parent
d14ae26a64
commit
3642c903c5
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue