From 8a19cf1ed1ba3ddeafde279b45b8655e8a0d75c6 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 28 Mar 2016 11:27:57 +0100 Subject: [PATCH] fetcher git: Remove extra newline --- 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 efcf60cc..4ef125bf 100755 --- a/SparkleLib/Git/SparkleFetcherGit.cs +++ b/SparkleLib/Git/SparkleFetcherGit.cs @@ -253,7 +253,7 @@ namespace SparkleLib.Git { // Pass all files through the encryption filter string git_attributes_file_path = new string [] { TargetFolder, ".git", "info", "attributes" }.Combine (); - File.WriteAllText (git_attributes_file_path, "\n* filter=encryption"); + File.WriteAllText (git_attributes_file_path, "* filter=encryption"); // Store the password string password_file_path = new string [] { TargetFolder, ".git", "info", "encryption_password" }.Combine ();