From 60b8d77374955a0fcae3c0079df76844c86fde0c Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 11 Mar 2013 20:10:13 +0000 Subject: [PATCH] fetcher: ignore files with chars that aren't allowed on Windows. #1213 --- SparkleLib/SparkleFetcherBase.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SparkleLib/SparkleFetcherBase.cs b/SparkleLib/SparkleFetcherBase.cs index 60919134..09174780 100755 --- a/SparkleLib/SparkleFetcherBase.cs +++ b/SparkleLib/SparkleFetcherBase.cs @@ -93,7 +93,9 @@ namespace SparkleLib { "*/CVS/*", ".cvsignore", "*/.cvsignore", // CVS "/.svn/*", "*/.svn/*", // Subversion "/.hg/*", "*/.hg/*", "*/.hgignore", // Mercurial - "/.bzr/*", "*/.bzr/*", "*/.bzrignore" // Bazaar + "/.bzr/*", "*/.bzr/*", "*/.bzrignore", // Bazaar + "*<*", "*>*", "*:*", "*\"*", "*|*", "*\\?*", "*\\**", "*\\\\*" // Not allowed on Windows systems, + // see (http://msdn.microsoft.com/en-us/library/aa365247(v=vs.85).aspx) };