Fix escaping in commit message

This commit is contained in:
Hylke Bons 2010-04-29 12:51:05 +01:00
parent f709de7c38
commit 3720263085

View file

@ -339,7 +339,6 @@ public class Repository {
Console.WriteLine ("[Commit] " + Message);
Console.WriteLine ("[Git] Commiting changes...");
Process.StartInfo.Arguments = "commit -m \"" + Message + "\"";
Console.WriteLine ("commit -m '" + Message + "'");
Process.Start();
}