From ac5f3c7acd596ef417b4762e34faf0a7e3eb871c Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Wed, 11 Dec 2013 14:04:15 +0100 Subject: [PATCH] fetcher git: Fix password check --- SparkleLib/Git/SparkleFetcherGit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleLib/Git/SparkleFetcherGit.cs b/SparkleLib/Git/SparkleFetcherGit.cs index f5f13b41..97b36ae6 100755 --- a/SparkleLib/Git/SparkleFetcherGit.cs +++ b/SparkleLib/Git/SparkleFetcherGit.cs @@ -288,7 +288,7 @@ namespace SparkleLib.Git { process.StartInfo.CreateNoWindow = true; process.StartInfo.FileName = "openssl"; - process.StartInfo.Arguments = "enc -d -aes-256-cbc -base64 -pass stdin" + + process.StartInfo.Arguments = "enc -d -aes-256-cbc -base64 -pass stdin " + "-in \"" + password_check_file_path + "\""; SparkleLogger.LogInfo ("Cmd | " + System.IO.Path.GetFileName (process.StartInfo.WorkingDirectory),