Mercurial > public > mercurial-scm > hg-stable
diff mercurial/sshrepo.py @ 5644:e2e8e977a6cb
win32: fix ssh://host:port when using Plink
Moves ssh argument building to platform specific utils code.
The win32 version looks for plink in ssh command string and
uses '-P' in lieu of '-p' for specifying a port
author | Steve Borho <steve@borho.org> |
---|---|
date | Wed, 12 Dec 2007 16:44:26 -0600 |
parents | 32ec518ee3cb |
children | 87e6b4f4871b |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Mon Dec 10 22:41:18 2007 +0100 +++ b/mercurial/sshrepo.py Wed Dec 12 16:44:26 2007 -0600 @@ -24,12 +24,11 @@ self.port = m.group(5) self.path = m.group(7) or "." - args = self.user and ("%s@%s" % (self.user, self.host)) or self.host - args = self.port and ("%s -p %s") % (args, self.port) or args - sshcmd = self.ui.config("ui", "ssh", "ssh") remotecmd = self.ui.config("ui", "remotecmd", "hg") + args = util.sshargs(sshcmd, self.host, self.user, self.port) + if create: cmd = '%s %s "%s init %s"' cmd = cmd % (sshcmd, args, remotecmd, self.path)