From ea34e9680654856f7f3947f4e87bbba49060de4f Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 23 Jun 2013 09:58:55 +0100 Subject: [PATCH] windows: Fix GIT_SSH path to ssh.exe --- SparkleShare/Windows/SparkleController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/Windows/SparkleController.cs b/SparkleShare/Windows/SparkleController.cs index fefcaf82..da0fb9d8 100644 --- a/SparkleShare/Windows/SparkleController.cs +++ b/SparkleShare/Windows/SparkleController.cs @@ -67,7 +67,7 @@ namespace SparkleShare { Environment.SetEnvironmentVariable ("HOME", Environment.GetFolderPath (Environment.SpecialFolder.UserProfile)); StartSSH (); - SparkleLib.SparkleGit.SparkleGit.SSHPath = Path.Combine (msysgit_path, "ssh.exe"); + SparkleLib.SparkleGit.SparkleGit.SSHPath = Path.Combine (msysgit_path, "bin", "ssh.exe"); base.Initialize (); }