From 8efbd378e1eaa473d850efe77026abf51041d2f1 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Wed, 15 Dec 2010 10:17:01 -0800 Subject: Correct plink -batch option When GIT_SSH is set to use plink, the correct option name is "-batch" and not "--batch". This was a typo introduced when we added support for plink via GIT_SSH. Change-Id: I391660e38f5d208bba11e3f2a8f25922de2af878 Signed-off-by: Shawn O. Pearce --- org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportGitSsh.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportGitSsh.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportGitSsh.java index 8132ac3c39..bb791ed439 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportGitSsh.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportGitSsh.java @@ -309,7 +309,7 @@ public class TransportGitSsh extends SshTransport implements PackTransport { List args = new ArrayList(); args.add(ssh); if (putty) - args.add("--batch"); + args.add("-batch"); if (0 < getURI().getPort()) { args.add(putty ? "-P" : "-p"); args.add(String.valueOf(getURI().getPort())); -- cgit v1.2.3