fetcher git: fix type. Closes #565

This commit is contained in:
Hylke Bons 2012-01-29 18:12:43 +00:00
parent 4d89897267
commit 62c8a1fcb2

View file

@ -222,8 +222,8 @@ namespace SparkleLib {
SparkleHelpers.CombineMore (this.target_folder, ".git", "info"));
// File that lists the files we want git to ignore
string exlude_rules_file_path = Path.Combine (info.FullName, "exclude");
TextWriter writer = new StreamWriter (exlude_rules_file_path);
string exclude_rules_file_path = Path.Combine (info.FullName, "exclude");
TextWriter writer = new StreamWriter (exclude_rules_file_path);
// gedit and emacs
writer.WriteLine ("*~");