Ignore directories beginning with a "." when searching for mods
authorMatthew I <matttpt@gmail.com>
Sun, 7 Oct 2012 14:03:22 +0000 (10:03 -0400)
committerPerttu Ahola <celeron55@gmail.com>
Fri, 30 Nov 2012 19:41:50 +0000 (21:41 +0200)
commit6cf87e1d23d829cc0d5c07160e8135ff5887d90d
tree1a1b6a0787c5e038d8bf2cd8a9718e2c7896c7a8
parent8a93581c8ab457819a258286aca4ef4359d80877
Ignore directories beginning with a "." when searching for mods

This is not a problem on POSIX systems (these directories are
ignored by the POSIX implementation of fs::GetDirListing() in
filesys.cpp), but these directories still are reported on Windows
systems.  This becomes a problem when mod authors use version
control systems that create directories like ".git" or ".svn"
and collectMods() picks up on them.  It has also been suggested
that ignoring such directories would allow for the easily disabling
mods by inserting a "." in front of their name.

This quick fix simply makes collectMods() ignore directories
beginning with a ".".
src/mods.cpp