Rebuild directories filenodes to avoid sincronization errors.

This commit is contained in:
2015-11-19 00:52:22 +01:00
parent 837dd8c389
commit 0ef40dfe53

View File

@@ -231,6 +231,10 @@ int Sync(char *pathLeft, char *pathRight, int recheck, int dryRun) {
else { else {
// Run action list // Run action list
ActionFileNode_RunList(actionFileNode, pathLeft, pathRight); ActionFileNode_RunList(actionFileNode, pathLeft, pathRight);
if (recheck) {
CheckDir(pathLeft, recheck);
CheckDir(pathRight, recheck);
}
} }
return (1); return (1);