From 89024f5ca9eb3f15c17f05a1d6b0e1a58cf67049 Mon Sep 17 00:00:00 2001 From: Brian Henry Date: Fri, 26 Apr 2024 11:16:53 -0700 Subject: [PATCH] Update Cleanup.php --- src/Cleanup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cleanup.php b/src/Cleanup.php index 5630e3e..2832578 100644 --- a/src/Cleanup.php +++ b/src/Cleanup.php @@ -74,7 +74,7 @@ public function cleanup(array $sourceFiles): void if (false === strpos('WIN', PHP_OS)) { unlink($absolutePath); } else { - @rmdir($absolutePath); + rmdir($absolutePath); } }