From 0aa030f09d3fb47b708e39cffeb7470099010f0c Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Wed, 13 Feb 2019 07:26:14 +0100 Subject: [PATCH] Fixed typo introduced in recent fix --- src/Composer/Util/Filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Util/Filesystem.php b/src/Composer/Util/Filesystem.php index 7c342573b..1903f1c8d 100644 --- a/src/Composer/Util/Filesystem.php +++ b/src/Composer/Util/Filesystem.php @@ -235,7 +235,7 @@ class Filesystem // retry after a bit on windows since it tends to be touchy with mass removals if (Platform::isWindows()) { usleep(350000); - $deleted = !@rmdir($path); + $deleted = @rmdir($path); } if (!$deleted) {