Skip to content

Commit 25c4aa7

Browse files
committed
Fixes #214
1 parent 2923ca4 commit 25c4aa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/DirectoryCleaner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function process(FileInfo $path) {
1919
continue;
2020
}
2121
if ($x->isDir()) {
22-
$this->clearDirectory(new FileInfo($x->getPathname()));
22+
$this->process(new FileInfo($x->getPathname()));
2323
}
2424
unlink($x->getPathname());
2525
}

0 commit comments

Comments
 (0)