From 62c8a1fcb27f03dd045e9c40d82a320e1b09dbad Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 29 Jan 2012 18:12:43 +0000 Subject: [PATCH] fetcher git: fix type. Closes #565 --- SparkleLib/Git/SparkleFetcherGit.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleLib/Git/SparkleFetcherGit.cs b/SparkleLib/Git/SparkleFetcherGit.cs index 160b52ff..b54e5e2c 100755 --- a/SparkleLib/Git/SparkleFetcherGit.cs +++ b/SparkleLib/Git/SparkleFetcherGit.cs @@ -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 ("*~");