fetcher git: Remove extra newline

This commit is contained in:
Hylke Bons 2016-03-28 11:27:57 +01:00
parent 6bff5cf0d8
commit 8a19cf1ed1

View file

@ -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 ();