Fix cache directory upgrading - do not try to remove the destination directory.

main
Christian Schiffler 11 years ago
parent a045ab3459
commit fc4cc79a52

@ -118,7 +118,9 @@ class Factory
@rename($child, $dir.'/'.basename($child));
}
}
@rmdir($oldPath);
if ($config->get('cache-dir') != $oldPath) {
@rmdir($oldPath);
}
}
}
}

Loading…
Cancel
Save