Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removed whitespace from /bin/echo argument
  • Loading branch information
anadimisra committed Jan 14, 2014
1 parent f759bca commit 7982206
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1070,7 +1070,7 @@ private String launchCommandIn(ArgumentListBuilder args, File workDir, EnvVars e
EnvVars environment = new EnvVars(env);
if (!env.containsKey("SSH_ASKPASS")) {
// GIT_ASKPASS supersed SSH_ASKPASS when set, so don't mask SSH passphrase when set
environment.put("GIT_ASKPASS", launcher.isUnix() ? "/bin/echo " : "echo ");
environment.put("GIT_ASKPASS", launcher.isUnix() ? "/bin/echo" : "echo ");
}
String command = "git " + StringUtils.join(args.toCommandArray(), " ");
try {
Expand Down

0 comments on commit 7982206

Please sign in to comment.