ignore a path containing multiple dirs in skip_dir

This commit is contained in:
Norbert Preining 2019-03-22 11:19:53 +09:00
parent de98fe8492
commit 8f28daec8a

View file

@ -78,7 +78,7 @@ final class SelectiveSync
// config sync_list file handling
bool isPathExcluded(string path)
{
return .isPathExcluded(path, paths) || .isPathMatched(path, mask);
return .isPathExcluded(path, paths) || .isPathMatched(path, mask) || .isPathMatched(path, dirmask);
}
}