mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Skip .hg directories
This commit is contained in:
parent
619f33fffc
commit
d820233d21
1 changed files with 3 additions and 3 deletions
|
@ -898,10 +898,10 @@ void CFileContainer::getPathContent (const string &path, bool recurse, bool want
|
||||||
|
|
||||||
if (isdirectory(de))
|
if (isdirectory(de))
|
||||||
{
|
{
|
||||||
// skip CVS and .svn directory
|
// skip CVS, .svn and .hg directory
|
||||||
if ((!showEverything) && (fn == "CVS" || fn == ".svn"))
|
if ((!showEverything) && (fn == "CVS" || fn == ".svn" || fn == ".hg"))
|
||||||
{
|
{
|
||||||
NL_DISPLAY_PATH("PATH: CPath::getPathContent(%s, %d, %d, %d): skip CVS and .svn directory", path.c_str(), recurse, wantDir, wantFile);
|
NL_DISPLAY_PATH("PATH: CPath::getPathContent(%s, %d, %d, %d): skip CVS, .svn and .hg directory", path.c_str(), recurse, wantDir, wantFile);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue