Show More
@@ -51,7 +51,7 b' class sshpeer(wireproto.wirepeer):' | |||||
51 | cmd = '%s %s %s' % (sshcmd, args, |
|
51 | cmd = '%s %s %s' % (sshcmd, args, | |
52 | util.shellquote("%s init %s" % |
|
52 | util.shellquote("%s init %s" % | |
53 | (_serverquote(remotecmd), _serverquote(self.path)))) |
|
53 | (_serverquote(remotecmd), _serverquote(self.path)))) | |
54 |
ui. |
|
54 | ui.debug('running %s\n' % cmd) | |
55 | res = util.system(cmd) |
|
55 | res = util.system(cmd) | |
56 | if res != 0: |
|
56 | if res != 0: | |
57 | self._abort(error.RepoError(_("could not create remote repo"))) |
|
57 | self._abort(error.RepoError(_("could not create remote repo"))) | |
@@ -68,7 +68,7 b' class sshpeer(wireproto.wirepeer):' | |||||
68 | cmd = '%s %s %s' % (sshcmd, args, |
|
68 | cmd = '%s %s %s' % (sshcmd, args, | |
69 | util.shellquote("%s -R %s serve --stdio" % |
|
69 | util.shellquote("%s -R %s serve --stdio" % | |
70 | (_serverquote(remotecmd), _serverquote(self.path)))) |
|
70 | (_serverquote(remotecmd), _serverquote(self.path)))) | |
71 |
self.ui. |
|
71 | self.ui.debug('running %s\n' % cmd) | |
72 | cmd = util.quotecommand(cmd) |
|
72 | cmd = util.quotecommand(cmd) | |
73 |
|
73 | |||
74 | # while self.subprocess isn't used, having it allows the subprocess to |
|
74 | # while self.subprocess isn't used, having it allows the subprocess to |
General Comments 0
You need to be logged in to leave comments.
Login now