fetcher: ignore files with chars that aren't allowed on Windows. #1213

This commit is contained in:
Hylke Bons 2013-03-11 20:10:13 +00:00
parent 94f2d744fe
commit 60b8d77374

View file

@ -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)
};