From c1b684dc2a47c951b8f694daa4f61d5be48e9d25 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 11 Sep 2011 23:47:36 +0200 Subject: [PATCH] Ignore Firefox and Chromium temp download files --- SparkleLib/Git/SparkleFetcherGit.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SparkleLib/Git/SparkleFetcherGit.cs b/SparkleLib/Git/SparkleFetcherGit.cs index 8029b784..f988d26d 100644 --- a/SparkleLib/Git/SparkleFetcherGit.cs +++ b/SparkleLib/Git/SparkleFetcherGit.cs @@ -209,6 +209,10 @@ namespace SparkleLib { // gedit and emacs writer.WriteLine ("*~"); + // Firefox and Chromium temporary download files + writer.WriteLine (".part"); + writer.WriteLine (".crdownload"); + // vi(m) writer.WriteLine (".*.sw[a-z]"); writer.WriteLine ("*.un~");